Skip to content

Commit d884988

Browse files
committed
gitignore
1 parent ca86157 commit d884988

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
2-
.idea/
3-
*.iml
1+
temp/

conf/supervisord.ini

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

0 commit comments

Comments
 (0)