File tree Expand file tree Collapse file tree 2 files changed +33
-3
lines changed
Expand file tree Collapse file tree 2 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 1- # https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
2- .idea /
3- * .iml
1+ temp /
Original file line number Diff line number Diff line change 1+ [supervisord]
2+ nodaemon =true
3+ user =root
4+ directory =/tmp
5+ pidfile =/tmp/supervisord.pid
6+ logfile =/dev/stdout
7+ logfile_maxbytes =0
8+ logfile_backups =0
9+ loglevel =info
10+ # loglevel=%(ENV_LOGLEVEL)s
11+
12+ [program:php-fpm]
13+ command =/usr/local/sbin/php-fpm -F
14+ # user=%(ENV_WWW_USER)s
15+ stdout_logfile =/dev/stdout
16+ stdout_logfile_maxbytes =0
17+ stderr_logfile =/dev/stderr
18+ stderr_logfile_maxbytes =0
19+ priority =10
20+ autostart =true
21+ autorestart =unexpected
22+
23+ [program:nginx]
24+ command =/usr/sbin/nginx -g ' daemon off;'
25+ # user=%(ENV_WWW_USER)s
26+ stdout_logfile =/dev/stdout
27+ stdout_logfile_maxbytes =0
28+ stderr_logfile =/dev/stderr
29+ stderr_logfile_maxbytes =0
30+ priority =20
31+ autostart =true
32+ autorestart =unexpected
You can’t perform that action at this time.
0 commit comments