Some checks failed
Build and Release / build-and-test (arm64, alpine) (push) Successful in 8s
Build and Release / build-and-test (amd64, alpine) (push) Successful in 14s
Build and Release / build-and-test (arm64, ubuntu) (push) Successful in 14s
Build and Release / build-and-test (amd64, ubuntu) (push) Successful in 23s
Build and Release / release (push) Failing after 26s
40 lines
741 B
Desktop File
40 lines
741 B
Desktop File
[Unit]
|
|
Description=XXXigCC Proxy Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
|
|
# 工作目录
|
|
WorkingDirectory=/opt/xxxigcc-proxy
|
|
|
|
# 执行命令
|
|
ExecStart=/opt/xxxigcc-proxy/xxxigcc-proxy --config=/etc/xxxigcc-proxy/config.json --log-file=/var/log/xxxigcc-proxy/proxy.log --access-log-file=/var/log/xxxigcc-proxy/access.log
|
|
|
|
# 重启策略
|
|
Restart=always
|
|
RestartSec=10
|
|
|
|
# 用户和组
|
|
User=xxxigcc-proxy
|
|
Group=xxxigcc-proxy
|
|
|
|
# 安全设置
|
|
NoNewPrivileges=true
|
|
PrivateTmp=true
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
ReadWritePaths=/var/log/xxxigcc-proxy
|
|
|
|
# 日志设置
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=xxxigcc-proxy
|
|
|
|
# 资源限制
|
|
LimitNOFILE=65535
|
|
LimitNPROC=4096
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|