initial commit

This commit is contained in:
root
2025-04-09 00:31:46 +02:00
commit 69131abf70
4 changed files with 118 additions and 0 deletions

16
README.systemd-service Normal file
View File

@ -0,0 +1,16 @@
[Unit]
Description=Trac Standalone Server
After=network.target
[Service]
Type=simple
User=www-data
Group=www-data
Environment="TRAC_ENV_PARENT_DIR=/data/trac"
#ExecStart=/usr/bin/tracd --port 8051 --user=www-data --group=www-data --auth=*,/data/trac/.trac.htdigest,trac /data/trac
ExecStart=/usr/bin/tracd --port 8051 --auth=*,/data/trac/.trac.htdigest,trac /data/trac
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=multi-user.target