212 lines
6.0 KiB
Plaintext
212 lines
6.0 KiB
Plaintext
# 杜康好客 — runxian.top HTTPS
|
|
# 执行: deploy/enable-runxian-dukang-ssl.sh
|
|
# 三端 H5 统一入口 user.runxian.top/{user,shop,partner}/
|
|
|
|
server {
|
|
listen 80;
|
|
server_name user.runxian.top shop.runxian.top partner.runxian.top m.runxian.top;
|
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
root /var/www/certbot;
|
|
default_type "text/plain";
|
|
}
|
|
|
|
location / {
|
|
return 301 https://user.runxian.top$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name m.runxian.top;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/user.runxian.top/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/user.runxian.top/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
|
|
return 301 https://user.runxian.top$request_uri;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name user.runxian.top;
|
|
|
|
access_log /var/log/nginx/dukang/runxian-h5.access.log main;
|
|
error_log /var/log/nginx/dukang/runxian-h5.error.log warn;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/user.runxian.top/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/user.runxian.top/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
client_max_body_size 20m;
|
|
|
|
location ~ ^/MP_verify_.*\.txt$ {
|
|
root /opt/dukang-haoke/apps/h5-user/dist;
|
|
default_type text/plain;
|
|
access_log off;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://127.0.0.1:8090;
|
|
proxy_http_version 1.1;
|
|
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;
|
|
proxy_set_header Connection "";
|
|
}
|
|
|
|
location = / {
|
|
return 302 /user/;
|
|
}
|
|
|
|
location /user/ {
|
|
rewrite ^/user/(.*)$ /$1 break;
|
|
proxy_pass http://127.0.0.1:8091;
|
|
proxy_http_version 1.1;
|
|
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 /shop/ {
|
|
rewrite ^/shop/(.*)$ /$1 break;
|
|
proxy_pass http://127.0.0.1:8092;
|
|
proxy_http_version 1.1;
|
|
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 /partner/ {
|
|
rewrite ^/partner/(.*)$ /$1 break;
|
|
proxy_pass http://127.0.0.1:8093;
|
|
proxy_http_version 1.1;
|
|
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;
|
|
}
|
|
|
|
# 旧 C 端根路径书签(无 /user 前缀)→ /user/...
|
|
location / {
|
|
return 302 /user$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name shop.runxian.top;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/user.runxian.top/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/user.runxian.top/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
|
|
return 301 https://user.runxian.top/shop$request_uri;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name partner.runxian.top;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/user.runxian.top/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/user.runxian.top/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
|
|
return 301 https://user.runxian.top/partner$request_uri;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name dkapi.runxian.top;
|
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
root /var/www/certbot;
|
|
default_type "text/plain";
|
|
}
|
|
|
|
include /opt/dukang-haoke/deploy/nginx-deploy-webhook.conf;
|
|
|
|
location / {
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name dkapi.runxian.top;
|
|
|
|
access_log /var/log/nginx/dukang/runxian-api.access.log main;
|
|
error_log /var/log/nginx/dukang/runxian-api.error.log warn;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/user.runxian.top/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/user.runxian.top/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
client_max_body_size 20m;
|
|
|
|
include /opt/dukang-haoke/deploy/nginx-deploy-webhook.conf;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8090;
|
|
proxy_http_version 1.1;
|
|
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;
|
|
proxy_set_header Connection "";
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name webadmin.runxian.top;
|
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
root /var/www/certbot;
|
|
default_type "text/plain";
|
|
}
|
|
|
|
location / {
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name webadmin.runxian.top;
|
|
|
|
access_log /var/log/nginx/dukang/runxian-admin.access.log main;
|
|
error_log /var/log/nginx/dukang/runxian-admin.error.log warn;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/user.runxian.top/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/user.runxian.top/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
client_max_body_size 20m;
|
|
|
|
location /api/ {
|
|
proxy_pass http://127.0.0.1:8090;
|
|
proxy_http_version 1.1;
|
|
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;
|
|
proxy_set_header Connection "";
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8094;
|
|
proxy_http_version 1.1;
|
|
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;
|
|
}
|
|
}
|