kenken999 commited on
Commit
d9ce4d1
·
verified ·
1 Parent(s): 965f314

Upload supervisord.conf with huggingface_hub

Browse files
Files changed (1) hide show
  1. supervisord.conf +17 -0
supervisord.conf ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [supervisord]
2
+ nodaemon=true
3
+ user=root
4
+
5
+ [program:mysql]
6
+ command=/usr/bin/pidproxy /var/run/mysqld/mysqld.pid /usr/bin/mysqld_safe
7
+ autostart=true
8
+ autorestart=true
9
+ stdout_logfile=/var/log/supervisor/mysql.log
10
+ stderr_logfile=/var/log/supervisor/mysql_err.log
11
+
12
+ [program:apache2]
13
+ command=/bin/bash -c "source /etc/apache2/envvars && exec /usr/sbin/apache2 -DFOREGROUND -k start"
14
+ autostart=true
15
+ autorestart=true
16
+ stdout_logfile=/var/log/supervisor/apache2.log
17
+ stderr_logfile=/var/log/supervisor/apache2_err.log