66 lines
1.5 KiB
Nginx Configuration File
66 lines
1.5 KiB
Nginx Configuration File
|
user www-data;
|
||
|
worker_processes auto;
|
||
|
worker_rlimit_nofile 65535;
|
||
|
pid /run/nginx.pid;
|
||
|
|
||
|
include /etc/nginx/modules-enabled/*.conf;
|
||
|
|
||
|
events {
|
||
|
worker_connections 4096;
|
||
|
multi_accept off;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
log_format limited '$remote_addr - $remote_user [$time_local] '
|
||
|
'"$request_method /bogus $server_protocol" $status $body_bytes_sent '
|
||
|
'"-" "Bogus/66.6"';
|
||
|
|
||
|
access_log off;
|
||
|
error_log /dev/null;
|
||
|
|
||
|
# Basic Settings
|
||
|
charset utf-8;
|
||
|
sendfile on;
|
||
|
tcp_nopush on;
|
||
|
tcp_nodelay on;
|
||
|
server_tokens off;
|
||
|
log_not_found off;
|
||
|
types_hash_max_size 1024;
|
||
|
types_hash_bucket_size 64;
|
||
|
server_names_hash_bucket_size 128;
|
||
|
|
||
|
# MIME
|
||
|
include mime.types;
|
||
|
|
||
|
# SSL
|
||
|
include configs/ssl.conf;
|
||
|
|
||
|
# reset timed out connections freeing ram
|
||
|
reset_timedout_connection on;
|
||
|
# maximum time between packets the client can pause when sending nginx any data
|
||
|
client_body_timeout 10s;
|
||
|
# maximum time the client has to send the entire header to nginx
|
||
|
client_header_timeout 10s;
|
||
|
# timeout which a single keep-alive client connection will stay open
|
||
|
keepalive_timeout 65s;
|
||
|
# maximum time between packets nginx is allowed to pause when sending the client data
|
||
|
send_timeout 10s;
|
||
|
|
||
|
# PERFORMANCE / ASYNC I/O
|
||
|
aio threads=default;
|
||
|
aio_write on;
|
||
|
directio 2m;
|
||
|
|
||
|
# Maps
|
||
|
include /etc/nginx/snippets/maps.conf;
|
||
|
include /etc/nginx/snippets/poop.conf;
|
||
|
|
||
|
# Upstreams
|
||
|
include /etc/nginx/configs/upstreams.conf;
|
||
|
|
||
|
# Aqui esta wisp.conf
|
||
|
include /etc/nginx/conf.d/root/*.conf;
|
||
|
# Aqui deje mi carpeta para mis configuraciones, para evitar confusiones.
|
||
|
include /etc/nginx/conf.d/ckg/*.conf;
|
||
|
}
|