34 lines
752 B
Desktop File
34 lines
752 B
Desktop File
[Unit]
|
|
Description=Sub2API - AI API Gateway Platform
|
|
Documentation=https://github.com/Wei-Shaw/sub2api
|
|
After=network.target postgresql.service redis.service
|
|
Wants=postgresql.service redis.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=sub2api
|
|
Group=sub2api
|
|
WorkingDirectory=/opt/sub2api
|
|
ExecStart=/opt/sub2api/sub2api
|
|
Restart=always
|
|
RestartSec=5
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=sub2api
|
|
|
|
# Security hardening
|
|
NoNewPrivileges=true
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
PrivateTmp=true
|
|
ReadWritePaths=/opt/sub2api
|
|
|
|
# Environment - Server configuration
|
|
# Modify these values to change listen address and port
|
|
Environment=GIN_MODE=release
|
|
Environment=SERVER_HOST=0.0.0.0
|
|
Environment=SERVER_PORT=8080
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|