File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
user nginx;
2
2
worker_processes 1;
3
3
4
- error_log /dev/ stderr notice;
4
+ error_log stderr notice;
5
5
pid /var/run/nginx.pid;
6
6
7
7
events {
@@ -99,15 +99,16 @@ http {
99
99
100
100
${INCLUDE_DEFAULT_RATE_LIMITS}
101
101
102
- error_log /dev/ stderr notice;
102
+ error_log stderr notice;
103
103
server {
104
104
listen 443 ssl;
105
105
server_name localhost;
106
106
107
107
include conf.d/enable-compression.conf;
108
108
109
- access_log /dev/stderr json_analytics if=${DOLLAR}loggable;
110
- access_log /dev/stdout json_analytics;
109
+ access_log stderr json_analytics if=${DOLLAR}loggable;
110
+ access_log $NGINX_LOGS_DIR/access_bad.log json_analytics if=${DOLLAR}loggable;
111
+ access_log stdout json_analytics;
111
112
112
113
#include conf.d/cloudflare-allow.conf;
113
114
#deny all;
You can’t perform that action at this time.
0 commit comments