First commit

This commit is contained in:
2025-06-06 12:18:24 -05:00
commit 42bed4c90c
7 changed files with 361 additions and 0 deletions

26
supervisord.conf Normal file
View File

@ -0,0 +1,26 @@
; supervisord.conf
[supervisord]
nodaemon=true
logfile=/var/log/supervisord.log
loglevel=info
[program:slapd]
command=/usr/sbin/slapd -h "ldap://0.0.0.0:389 ldaps://0.0.0.0:636" -u openldap -g openldap -d -1
autostart=true
autorestart=true
stdout_logfile=/var/log/slapd.log
stderr_logfile=/var/log/slapd.err
[program:hydra]
command=/usr/local/bin/hydra serve all --config /etc/hydra/config.yaml
autostart=true
autorestart=true
stdout_logfile=/var/log/hydra.log
stderr_logfile=/var/log/hydra.err
[program:apache2]
command=/usr/sbin/apache2ctl -D FOREGROUND
autostart=true
autorestart=true
stdout_logfile=/var/log/apache2.log
stderr_logfile=/var/log/apache2.err