一个域名下的 nginx 配置,同时配置server 服务、接口api 和转发,页面为vue项目。

域名:shinyboy.top

web-三国         部署地址:/www/wwwroot/sg ,    域名访问地址:https://shinyboy.top/sg

web-typecho   部署地址:/www/wwwroot/typecho   域名访问地址:https://shinyboy.top/typecho

 server接口,假设本机服务器开放端口813               域名访问地址:https://shinyboy.top/api/

微信小程序开发,登入 使用第三方域名转发服务:

小程序登录 | 微信开放文档

server {
     #SSL 默认访问端口号为 443
     listen 443 ssl; 
     #请填写绑定证书的域名
     server_name shinyboy.top; 
     #请填写证书文件的相对路径或绝对路径
     ssl_certificate www.shinyboy.top_bundle.crt; 
     #请填写私钥文件的相对路径或绝对路径
     ssl_certificate_key www.shinyboy.top.key; 
     ssl_session_timeout 5m;
     #请按照以下协议配置
     ssl_protocols TLSv1.2 TLSv1.3; 
     #请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。
     ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE; 
     ssl_prefer_server_ciphers on;
    
     # 绑定域名根目录访问地址
     location / {
         root /www/wwwroot/sg2/h5; 
         index  index.html index.htm;
     }
     
     location /sg {
         alias  /www/wwwroot/sg2/h5;
         index  index.html;
     }
 
 
     location /typecho {
         root /www/wwwroot/typecho/;         #静态资源路径
         index  index.html index.htm;
         try_files $uri $uri/ /index.html =404;
     }
 
    # 转发接口配置 proxy_pass,假设开放端口为813
    location ^~/api/ { 
            proxy_set_header   Host $host;
            proxy_set_header   X-Real-IP $remote_addr;
            proxy_set_header   X-Real-PORT $remote_port;
            proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
 
            proxy_pass http://127.0.0.1:813/;
            error_page 405 =200 http://$host$request_uri;
    }
    # 微信小程序登录转发 code2Session
    location ^~/weixin/api/ {
            proxy_set_header   Host $host;
            proxy_set_header   X-Real-IP $remote_addr;
            proxy_set_header   X-Real-PORT $remote_port;
            proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
 
            proxy_pass https://api.weixin.qq.com/sns/jscode2session ;
            error_page 405 =200 http://$host$request_uri;
    }

    # 配置其他路由,域名/zfy
    location /zfy {
        alias  /www/wwwroot/sg2/h5;
        index  index.html;
    }

 }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值