-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnginx.conf
34 lines (32 loc) · 934 Bytes
/
nginx.conf
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
user nobody;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
server_tokens off;
keepalive_timeout 65;
server {
listen 80 reuseport fastopen=3;
server_name 0.0.0.0;
expires 7d;
resolver 8.8.8.8 8.8.4.4 valid=300s;
resolver_timeout 5s;
gzip on;
gzip_min_length 1024;
gzip_proxied any;
gzip_comp_level 3;
gzip_types text/plain text/javascript text/css text/json application/xml application/javascript application/json image/jpeg image/gif image/png image/bmp font/ttf font/otf image/svg+xml;
proxy_hide_header Set-Cookie;
proxy_hide_header Alt-Svc;
proxy_hide_header Alternate-Protocol;
location / {
google on;
}
}
}