Change ordering
This commit is contained in:
parent
53ddc334f1
commit
03286c9f75
1 changed files with 12 additions and 2 deletions
14
nginx.conf
14
nginx.conf
|
|
@ -10,6 +10,16 @@ http {
|
||||||
include /etc/nginx/mime.types;
|
include /etc/nginx/mime.types;
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
|
|
||||||
# Include server configurations
|
# Define log formats first
|
||||||
include /etc/nginx/conf.d/*.conf;
|
include /etc/nginx/conf.d/matomo_log_format.conf;
|
||||||
|
|
||||||
|
# Basic settings
|
||||||
|
sendfile on;
|
||||||
|
tcp_nopush on;
|
||||||
|
tcp_nodelay on;
|
||||||
|
keepalive_timeout 65;
|
||||||
|
types_hash_max_size 2048;
|
||||||
|
|
||||||
|
# Include remaining server configurations
|
||||||
|
include /etc/nginx/conf.d/default.conf;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue