-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnginx.conf
56 lines (51 loc) · 1.61 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
server {
listen 80;
listen 443 ssl http2;
server_name xiaozhuye.com www.xiaozhuye.com 123.tiny.ren 123.tinyren.com;
if ( $host = 'www.xiaozhuye.com' ){
rewrite ^/(.*)$ https://xiaozhuye.com/$1 permanent;
}
if ( $scheme = 'http' ){
rewrite ^/(.*)$ https://xiaozhuye.com/$1 permanent;
}
ssl_certificate /www/wdlinux/nginx/sslkey/213936568310061.pem;
ssl_certificate_key /www/wdlinux/nginx/sslkey/213936568310061.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers AESGCM:ALL:!DH:!EXPORT:!RC4:+HIGH:!MEDIUM:!LOW:!aNULL:!eNULL;
ssl_prefer_server_ciphers on;
root /www/web/123/www;
set $node_port 8360;
index index.js index.html index.htm;
if ( -f $request_filename/index.html ){
rewrite (.*) $1/index.html break;
}
if ( !-f $request_filename ){
rewrite (.*) /index.js;
}
location = /index.js {
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://127.0.0.1:$node_port$request_uri;
proxy_redirect off;
}
location = /development.js {
deny all;
}
location = /testing.js {
deny all;
}
location = /production.js {
deny all;
}
location ~ /static/ {
etag on;
expires max;
}
}