nginx proxy转发配置
打开配置:
$ cd /usr/local/nginx/conf
$ vim nginx.conf
添加:
server
{
listen 80 default_server;
#listen [::]:80 default_server ipv6only=on;
server_name _;
index index.html index.htm index.php;
root /home/samba;
#error_page 404 /404.html;
# Deny access to PHP files in specific directory
#location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }
include enable-php.conf;
location /nginx_status
{
stub_status on;
access_log off;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /.well-known {
allow all;
}
location ~ /\.
{
deny all;
}
location /one/ {
proxy_pass http://192.168.1.153/;
proxy_set_header Host $host:$server_port;
#proxy_redirect http://dsm/ http://$host:8080/abc;
#proxy_redirect http://$host:8080/ http://127.0.0.1:8080/abc/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /two/ {
proxy_pass http://192.168.1.154/;
proxy_set_header Host $host:$server_port;
#proxy_redirect http://dsm/ http://$host:8080/abc;
#proxy_redirect http://$host:8080/ http://127.0.0.1:8080/abc/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
access_log /home/wwwlogs/access.log;
}
include vhost/*.conf;
}
重启nginx:
访问测试:
返回内容:你设置的转发的服务器的响应!