move some http directives to server

This commit is contained in:
bunkerity
2020-11-14 14:19:27 +01:00
parent 0f0593456c
commit 60fbbc1013
6 changed files with 30 additions and 22 deletions

View File

@@ -47,9 +47,6 @@ http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# maximum request body size
client_max_body_size %MAX_CLIENT_SIZE%;
# write logs to local syslog
access_log syslog:server=unix:/dev/log,nohostname,facility=local0,severity=notice combined;
error_log syslog:server=unix:/dev/log,nohostname,facility=local0 warn;
@@ -61,9 +58,6 @@ http {
uwsgi_temp_path /tmp/uwsgi_temp;
scgi_temp_path /tmp/scgi_temp;
# load caching custom config
include /etc/nginx/cache.conf;
# close connections in FIN_WAIT1 state
reset_timedout_connection on;
@@ -73,9 +67,6 @@ http {
keepalive_timeout 15;
send_timeout 10;
# enable/disable sending nginx version
server_tokens %SERVER_TOKENS%;
# resolvers to use
resolver %DNS_RESOLVERS% ipv6=off;
@@ -96,7 +87,7 @@ http {
# list of blocked country
%BLOCK_COUNTRY%
# list of blocker user agents
# list of blocked user agents
%BLOCK_USER_AGENT%
# custom http confs

View File

@@ -0,0 +1,4 @@
open_file_cache %OPEN_FILE_CACHE%;
open_file_cache_errors %OPEN_FILE_CACHE_ERRORS%;
open_file_cache_min_uses %OPEN_FILE_CACHE_MIN_USES%;
open_file_cache_valid %OPEN_FILE_CACHE_VALID%;

View File

@@ -34,4 +34,7 @@ server {
%USE_CLIENT_CACHE%
%USE_GZIP%
%USE_BROTLI%
client_max_body_size %MAX_CLIENT_SIZE%;
server_tokens %SERVER_TOKENS%;
%USE_OPEN_FILE_CACHE%
}