Initial commit

This commit is contained in:
2018-11-09 09:29:18 +01:00
commit 44fd9a03eb
10 changed files with 517 additions and 0 deletions

34
supervisor.ini Normal file
View File

@ -0,0 +1,34 @@
[supervisord]
nodaemon=true
[program:sshd]
command = /usr/sbin/sshd -D
directory = /fdroid
user = root
autostart = true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:fdroid-update]
command = inotifyd /fdroid-update.sh /fdroid/repo:w
directory = /fdroid
user = root
autostart = true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:darkhttpd]
command = darkhttpd /fdroid/repo
directory = /fdroid
user = root
autostart = true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0