Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0141G6xqLeNRYEtviLWSB5Up
34 lines
978 B
Desktop File
34 lines
978 B
Desktop File
[Unit]
|
|
Description=Waving Hands duel server
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=waving-hands
|
|
WorkingDirectory=/opt/waving-hands/app/server
|
|
Environment=PORT=8788
|
|
# Caddy terminates TLS; the plaintext port must not face the internet.
|
|
Environment=HOST=127.0.0.1
|
|
Environment=WH_DATA_DIR=/var/lib/waving-hands/rooms
|
|
Environment=SENTRY_DSN=https://e11c1f168789d9d7706bfc5eea4f373e@o4509525984149504.ingest.us.sentry.io/4512133232787456
|
|
ExecStart=/opt/waving-hands/app/server/node_modules/.bin/tsx src/index.ts
|
|
Restart=always
|
|
RestartSec=3
|
|
|
|
# Sandbox: the process reads /opt/waving-hands and writes only its data dir.
|
|
NoNewPrivileges=yes
|
|
PrivateTmp=yes
|
|
ProtectSystem=strict
|
|
ProtectHome=yes
|
|
ReadWritePaths=/var/lib/waving-hands
|
|
ProtectKernelTunables=yes
|
|
ProtectKernelModules=yes
|
|
ProtectControlGroups=yes
|
|
RestrictSUIDSGID=yes
|
|
# A runaway process gets killed and restarted before it can take the box down.
|
|
MemoryMax=300M
|
|
LimitNOFILE=4096
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|