We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373c03d commit 348b050Copy full SHA for 348b050
config/nginx.conf
@@ -10,6 +10,7 @@ http {
10
include mime.types;
11
default_type application/octet-stream;
12
13
+ # Define custom log format to include reponse times
14
log_format main_timed '$remote_addr - $remote_user [$time_local] "$request" '
15
'$status $body_bytes_sent "$http_referer" '
16
'"$http_user_agent" "$http_x_forwarded_for" '
@@ -81,4 +82,7 @@ http {
81
82
fastcgi_pass 127.0.0.1:9000;
83
}
84
85
+
86
+ # Include other server configs
87
+ include /etc/nginx/conf.d/*.conf;
88
0 commit comments