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