servnest
/
system
Archived
1
0
Fork 0
This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
system/config/nginx/nginx.conf

28 lines
562 B
Nginx Configuration File
Executable File

load_module "/usr/lib/nginx/modules/ngx_http_headers_more_filter_module.so";
worker_processes auto;
events {}
http {
include mimetypes/strict.conf;
default_type application/octet-stream;
#types_hash_bucket_size 128; # Default: 64
#types_hash_max_size 1024; # Default: 1024
sendfile on;
#tcp_nopush on;
gzip_static on;
include sites/*.conf;
include inc/security.conf;
server_tokens off;
#map $http_accept_language $lang {
# default en;
# ~en en;
# ~fr fr;
#}
}