Merge pull request #743 from tjlytle/feature-nginx-logs

 Sending logs to docker `stdout` and `stderr`.
This commit is contained in:
Mahmoud Zalt 2017-04-04 20:48:18 -04:00 committed by GitHub
commit 7b9ec17d8d
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ http {
client_max_body_size 20M;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
access_log /dev/stdout;
error_log /dev/stderr;
gzip on;
gzip_disable "msie6";