Nginx反向代理apache及Nginx
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx反向代理apache及Nginx相关的知识,希望对你有一定的参考价值。
一. 代理apahce:
1.先配置nginx配置文件:
[[email protected] conf.d]# vim /opt/app/nginx/conf.d/wordpress.conf
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://192.168.1.204;
proxy_set_header X-Real-IP $remote_addr;
}
}
2.若apache需要看到客户端真是IP,需要修改配置文件.
vim /etc/httpd/conf/httpd.conf
LogFormat "%{X-Real-IP}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""
原来的%h改成{X-Real-IP}i ,这里日志里就客户端访问IP了.
二.nginx方面.
简单方便.深入的需要看官方文档.
[[email protected] conf.d]# cat /opt/app/nginx/conf.d/wordpress.conf
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://192.168.1.204;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
以上是关于Nginx反向代理apache及Nginx的主要内容,如果未能解决你的问题,请参考以下文章
Nginx反向代理动静分离负载均衡及rewrite隐藏路径详解(Nginx Apache MySQL Redis)–第三部分
Nginx反向代理动静分离负载均衡及rewrite隐藏路径详解(Nginx Apache MySQL Redis)–第二部分
Nginx反向代理动静分离负载均衡及rewrite隐藏路径详解(Nginx Apache MySQL Redis)–第一部分(LAMP)