Update config path to data path
This commit is contained in:
@ -9,7 +9,7 @@ worker_processes auto;
|
||||
# Enables the use of JIT for regular expressions to speed-up their processing.
|
||||
pcre_jit on;
|
||||
|
||||
error_log /config/logs/error.log warn;
|
||||
error_log /data/logs/error.log warn;
|
||||
|
||||
# Includes files with directives to load dynamic modules.
|
||||
include /etc/nginx/modules/*.conf;
|
||||
@ -48,12 +48,13 @@ http {
|
||||
# - (dash) - request never reached to upstream module. Most likely it was processed at Nginx-level only (e.g. forbidden, redirects, etc) (Ref: Mail Thread
|
||||
log_format proxy '[$time_local] $upstream_cache_status $upstream_status $status - $request_method $scheme $host "$request_uri" [Client $remote_addr] [Length $body_bytes_sent] [Gzip $gzip_ratio] [Sent-to $server] "$http_user_agent" "$http_referer"';
|
||||
|
||||
access_log /config/logs/default.log proxy;
|
||||
access_log /data/logs/default.log proxy;
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /config/nginx/*.conf;
|
||||
include /data/nginx/*.conf;
|
||||
}
|
||||
|
||||
stream {
|
||||
include /config/nginx/stream/*.conf;
|
||||
include /data/nginx/stream/*.conf;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user