myconfigs/etc/nginx/nginx.conf

27 lines
392 B
Nginx Configuration File
Raw Permalink Normal View History

2023-06-16 22:14:17 +05:00
#user http;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
include sites/*.conf;
types_hash_max_size 4096;
client_max_body_size 3g;
proxy_buffers 1000 64k;
send_timeout 300s;
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
}