nginx反向代理配置 其实很简单

正文开始

配置代理 代理配置很简单,只需要在location内部增加你需要的代理的网址以及端口行了。 proxy_pass http://ip:端口; 这里以localhost默认监听80端口为例,我们使用nginx代理到blog.test:8080这里。 编辑vhost文件: ~~~ cd /usr/local/nginx/conf/vhost vim xxxx.com.conf ~~~ 配置如下: ~~~ server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { proxy_pass http://blog.test:8080; root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } ~~~

正文结束

宝塔 nginx 伪静态配置路由同时配置跨域 nginx配置允许http站点ajax访问https站点