Files
Spanglish/deploy/spanglish-frontend.service
root 0190a0497c Update dashboard community links to use env vars, add deploy configs
- Dashboard community links now use .env values like community page
- Removed hardcoded social media URLs from dashboard
- Added deploy folder with nginx and systemd service configs
- Moved linktree page to public route
- Various backend and auth context updates
2026-01-29 20:59:25 +00:00

29 lines
658 B
Desktop File

[Unit]
Description=Spanglish Frontend (Next.js)
Documentation=https://github.com/spanglish/Spanglish
After=network.target spanglish-backend.service
[Service]
Type=simple
User=spanglish
Group=spanglish
WorkingDirectory=/home/spanglish/Spanglish/frontend
Environment=NODE_ENV=production
Environment=PORT=3019
EnvironmentFile=/home/spanglish/Spanglish/frontend/.env
ExecStart=/usr/bin/npx next start -p 3019
Restart=on-failure
RestartSec=10
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=spanglish-frontend
# Security hardening
NoNewPrivileges=true
PrivateTmp=true
ProtectSystem=strict
ProtectHome=read-only
[Install]
WantedBy=multi-user.target