Add Trytond configuration and scripts for deployment

This commit introduces essential files and scripts for setting up a Trytond environment, including configuration, logging, systemd services, NGINX, and utility scripts for managing Trytond.
This commit is contained in:
2025-12-24 17:05:10 +01:00
parent 1066097465
commit efd53e6c49
13 changed files with 175 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
[Unit]
Description = Worker Trytond
After = syslog.target
[Service]
ExecStart = /opt/kitchen/venv/bin/trytond-worker -c /opt/kitchen/trytond.conf --logconf /opt/kitchen/logging.conf -d kitchen
Restart = always
KillSignal = SIGQUIT
Type = simple
StandardError = syslog
NotifyAccess = all
User=blaz
Group=blaz
[Install]
WantedBy = multi-user.target