公众号、小程序、开放平台、支付平台部署
1.要到最新的公众号的代码文件的dist文件
2.新建站点解析域名
3粘贴伪静态:
location ^~ /mytio/ {
proxy_pass http://127.0.0.1:6060/mytio/;
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_connect_timeout 60s;
proxy_read_timeout 120s;
}location / {
try_files $uri uri$uri/ /index.html;
}