Skip to content

Commit 7b9ec17

Browse files
authored
Merge pull request laradock#743 from tjlytle/feature-nginx-logs
✨ Sending logs to docker `stdout` and `stderr`.
2 parents 18b38db + 585baf0 commit 7b9ec17

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nginx/nginx.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ http {
1919
client_max_body_size 20M;
2020
include /etc/nginx/mime.types;
2121
default_type application/octet-stream;
22-
access_log /var/log/nginx/access.log;
23-
error_log /var/log/nginx/error.log;
22+
access_log /dev/stdout;
23+
error_log /dev/stderr;
2424
gzip on;
2525
gzip_disable "msie6";
2626

0 commit comments

Comments
 (0)