31 lines
796 B
Plaintext
31 lines
796 B
Plaintext
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name test.anzhizhichong.com;
|
||
|
|
return 301 https://$server_name$request_uri;
|
||
|
|
}
|
||
|
|
|
||
|
|
server {
|
||
|
|
listen 443 ssl http2;
|
||
|
|
server_name test.anzhizhichong.com;
|
||
|
|
|
||
|
|
ssl_certificate /etc/nginx/ssl/test.anzhizhichong.com.pem;
|
||
|
|
ssl_certificate_key /etc/nginx/ssl/test.anzhizhichong.com.key;
|
||
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
||
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
||
|
|
|
||
|
|
root /data/pms_dev;
|
||
|
|
index index.html;
|
||
|
|
|
||
|
|
location /pms/api/ {
|
||
|
|
proxy_pass http://127.0.0.1:3000/;
|
||
|
|
proxy_set_header Host $host;
|
||
|
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
|
}
|
||
|
|
|
||
|
|
location /pms/ {
|
||
|
|
try_files $uri $uri/ /pms/index.html;
|
||
|
|
}
|
||
|
|
}
|