Nginx 反向代理配置示例(conf文件配置)
Posted web前端开发技术
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx 反向代理配置示例(conf文件配置)相关的知识,希望对你有一定的参考价值。
nginx 反向代理配置示例(conf文件配置)
- www.aaa.com代理到http://127.0.0.1:3001
server {
listen 80;
server_name www.aaa.com;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
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_buffering off;
proxy_pass http://127.0.0.1:3001;
}
#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 /usr/share/nginx/html;
}
}
- www.bbb.com代理到http://127.0.0.1:3002
server {
listen 80;
server_name www.bbb.com;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
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_buffering off;
proxy_pass http://127.0.0.1:3002;
}
#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 /usr/share/nginx/html;
}
}
以上是关于Nginx 反向代理配置示例(conf文件配置)的主要内容,如果未能解决你的问题,请参考以下文章