Skip to content

Commit

Permalink
Writing errors to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
karthequian authored Oct 15, 2017
1 parent 6fa586b commit c70b2da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ events { worker_connections 1024; }
http {
access_log /dev/stdout;
sendfile on;
access_log /etc/nginx/logs/nginx-access.log;
access_log /dev/stdout;
error_log /etc/nginx/logs/nginx-error.log;

server {
Expand All @@ -16,4 +16,4 @@ http {
location / {
}
}
}
}

0 comments on commit c70b2da

Please sign in to comment.