40 lines
1.0 KiB
Desktop File
40 lines
1.0 KiB
Desktop File
[Unit]
|
|
Description=C Nostr Relay Server (Local Development)
|
|
Documentation=https://github.com/your-repo/c-relay
|
|
After=network.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=teknari
|
|
WorkingDirectory=/home/teknari/Storage/c_relay
|
|
Environment=DEBUG_LEVEL=0
|
|
ExecStart=/home/teknari/Storage/c_relay/crelay --port 7777 --debug-level=$DEBUG_LEVEL
|
|
Restart=always
|
|
RestartSec=5
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=c-relay-local
|
|
|
|
# Security settings (relaxed for local development)
|
|
NoNewPrivileges=true
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
ReadWritePaths=/home/teknari/Storage/c_relay
|
|
PrivateTmp=true
|
|
|
|
# Network security
|
|
PrivateNetwork=false
|
|
RestrictAddressFamilies=AF_INET AF_INET6
|
|
|
|
# Resource limits
|
|
LimitNOFILE=65536
|
|
LimitNPROC=4096
|
|
|
|
# Event-based configuration system
|
|
# No environment variables needed - all configuration is stored as Nostr events
|
|
# Database files (<relay_pubkey>.db) are created automatically in WorkingDirectory
|
|
# Admin keys are generated and displayed only during first startup
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |