server {
listen 5173;
server_name localhost;
#是否浏览文件下的列表
autoindex on;
# 字符编码
charset utf-8;
#access_log logs/host.access.log main;
# 静态资源
location / {
#是否允许跨域
add_header Access-Control-Allow-Origin *;
root F:/HBuilderProjects/vue3_vite_ts_pinia_uniapp/dist/build/h5;
index index.html index.htm;
}
# 反向代理
location /api/ {
proxy_pass http://192.168.1.89:8080/api/;
}
# 是否缓存
add_header Cache-Control “no-cache,must-revalidate”;
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
扫码领红包微信赞赏支付宝扫码领红包
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。侵权投诉:375170667@qq.com