You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
user www-data;
|
|
|
|
worker_processes {{ .Env.NGINX_WORKER_PROCESSES | default "4" }};
|
|
|
|
pid /run/nginx.pid;
|
|
|
|
include /etc/nginx/modules-enabled/*.conf;
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections {{ .Env.NGINX_WORKER_CONNECTIONS | default "768" }};
|
|
|
|
# multi_accept on;
|
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
|
|
|
|
##
|
|
|
|
# Basic Settings
|
|
|
|
##
|
|
|
|
|
|
|
|
sendfile on;
|
|
|
|
tcp_nopush on;
|
|
|
|
tcp_nodelay on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
types_hash_max_size 2048;
|
|
|
|
server_tokens off;
|
|
|
|
|
|
|
|
# server_names_hash_bucket_size 64;
|
|
|
|
# server_name_in_redirect off;
|
|
|
|
|
|
|
|
client_max_body_size 0;
|
|
|
|
|
|
|
|
resolver {{ .Env.NGINX_RESOLVER | default "127.0.0.11" }};
|
|
|
|
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
types {
|
|
|
|
# add support for wasm MIME type, that is required by specification and it is not part of default mime.types file
|
|
|
|
application/wasm wasm;
|
|
|
|
}
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
##
|
|
|
|
# Logging Settings
|
|
|
|
##
|
|
|
|
|
|
|
|
access_log /dev/stdout;
|
|
|
|
error_log /dev/stderr;
|
|
|
|
|
|
|
|
##
|
|
|
|
# Gzip Settings
|
|
|
|
##
|
|
|
|
|
|
|
|
gzip on;
|
|
|
|
gzip_types text/plain text/css application/javascript application/json;
|
|
|
|
gzip_vary on;
|
|
|
|
gzip_min_length 860;
|
|
|
|
|
|
|
|
# gzip_vary on;
|
|
|
|
# gzip_proxied any;
|
|
|
|
# gzip_comp_level 6;
|
|
|
|
# gzip_buffers 16 8k;
|
|
|
|
# gzip_http_version 1.1;
|
|
|
|
# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
|
|
|
|
##
|
|
|
|
# Virtual Host Configs
|
|
|
|
##
|
|
|
|
include /config/nginx/site-confs/*;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
daemon off;
|