default logging is more verbose
This commit is contained in:
parent
a2660c5118
commit
c4fd96738e
|
|
@ -12,6 +12,8 @@ server {
|
|||
|
||||
root /var/www/passbolt/webroot;
|
||||
index index.php;
|
||||
error_log /dev/stdout info;
|
||||
access_log /dev/stdout;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$args;
|
||||
|
|
@ -53,6 +55,8 @@ server {
|
|||
|
||||
root /var/www/passbolt/webroot;
|
||||
index index.php;
|
||||
error_log /dev/stdout info;
|
||||
access_log /dev/stdout;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$args;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
[program:nginx]
|
||||
command=nginx -g "daemon off;"
|
||||
command=/usr/sbin/nginx -g 'daemon off;'
|
||||
autostart=true
|
||||
priority=10
|
||||
stdout_logfile=/var/log/nginx/access.log
|
||||
stdout_logfile=/dev/stdout
|
||||
stdout_logfile_maxbytes=0
|
||||
stderr_logfile=/var/log/nginx/error.log
|
||||
stderr_logfile=/dev/stderr
|
||||
stderr_logfile_maxbytes=0
|
||||
|
|
|
|||
Loading…
Reference in New Issue