首页 > 代码库 > nginx 反向代理配置之---指定单域名
nginx 反向代理配置之---指定单域名
server { listen 80; server_name ngin服务器所对应的的域名; error_log /data/logs/nginx/mainsite.error.log; access_log /data/logs/nginx/mainsite.access.log main; #error_log logs/error.log notice; #error_log logs/error.log info; location ^~ /api/ { // 转发请求路径的 下的 “/api/ ” //设置跨域 add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Credentials true; add_header Access-Control-Allow-Headers "Origin, No-Cache, X-Requested-With, If-Modified-Since, Pragma, Last-Modified, Cache-Control, Expires, Content-Type, X-E4M-With"; proxy_pass http://mainsite; //要转发的地址 } error_page 404 /404.html; error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
nginx 反向代理配置之---指定单域名
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。