mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
535 B
535 B
Following is an example showing how to run PowerDNS-Admin with supervisord
Create supervisord program config file
$ sudo vim /etc/supervisor.d/powerdnsadmin.conf
[program:powerdnsadmin]
command=/opt/web/powerdns-admin/flask/bin/python ./run.py
stdout_logfile=/var/log/supervisor/program_powerdnsadmin.log
stderr_logfile=/var/log/supervisor/program_powerdnsadmin.error
autostart=true
autorestart=true
directory=/opt/web/powerdns-admin
Then sudo supervisorctl start powerdnsadmin
to start the Powerdns-Admin service.