c# nginx 配置
2021-06-18 13:23
阅读:359
标签:localhost 域名 空格 style 项目 log class root 配置 c# nginx 配置 标签:localhost 域名 空格 style 项目 log class root 配置 原文地址:https://www.cnblogs.com/yuanzijian-ruiec/p/10295931.html
listen 8095; #端口
server_name localhost; #域名可以有多个 用空格隔开
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root E:\; #代理项目路径
index index.html; #项目的地址
}
location /api {
proxy_pass http://127.0.0.1:8050/api;
client_max_body_size 1000m;
}
评论
亲,登录后才可以留言!