blob: d77c0deadc189ccbe9b5902554adc81f0cba460d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
worker_processes ${nginx_worker_processes};
worker_rlimit_nofile ${nginx_nofile};
events {
worker_connections ${nginx_worker_connections};
}
http {
include mime.types;
default_type application/octet-stream;
index index.html;
aio threads;
aio_write on;
sendfile on;
directio 4m;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
client_max_body_size 5m;
charset utf-8;
gzip on;
gzip_http_version 1.0;
gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript application/json image/svg+xml;
proxy_buffers 64 32k;
proxy_busy_buffers_size 64k;
fastcgi_buffers 64 32k;
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:10m;
ssl_session_tickets off;
ssl_protocols TLSv1.3;
ssl_prefer_server_ciphers off;
map \$http_upgrade \$connection_upgrade {
default upgrade;
'' keep-alive;
}
server {
listen 0.0.0.0:80 default_server;
listen [::]:80 default_server;
include acme.conf;
location / {
return 301 https://\$host\$request_uri;
}
}
include vhost*.conf;
}
|