37 lines
784 B
Nginx Configuration File
37 lines
784 B
Nginx Configuration File
user nginx;
|
||
worker_processes auto;
|
||
|
||
error_log /var/log/nginx/error.log notice;
|
||
pid /var/run/nginx.pid;
|
||
|
||
events {
|
||
worker_connections 1024;
|
||
}
|
||
|
||
http {
|
||
include /etc/nginx/mime.types;
|
||
default_type application/octet-stream;
|
||
|
||
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
||
'$status $body_bytes_sent "$http_referer" '
|
||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||
|
||
access_log /var/log/nginx/access.log main;
|
||
|
||
# allow HTTP/2 on the front‐end
|
||
ssl_session_cache shared:SSL:10m;
|
||
ssl_session_timeout 10m;
|
||
|
||
sendfile on;
|
||
tcp_nopush on;
|
||
|
||
keepalive_timeout 65;
|
||
|
||
gzip on;
|
||
|
||
# Set client limit to 100 MB
|
||
client_max_body_size 100M;
|
||
|
||
include /etc/nginx/conf.d/*.conf;
|
||
}
|