proxy pass для Tomcat
solid-7
nginx-forum at nginx.us
Wed Oct 23 06:50:25 UTC 2013
Доброго дня
нужна помощь - есть статическая старница html, отрабатывает нормально, нужно
чтобы при добавлении в адресной строке /portal шел проброс на 8080, проброс
происходит но страница выдает 404 ошибку
конфиг
server {
listen 80;
server_name ;
location / {
#proxy_pass http://localhost:8080/;
root /var/www/def;
index index.php index.html index.htm;
}
location /portal {
proxy_pass http://192.168.122.6:8080/;
proxy_redirect http://192.168.122.6:8080/ /;
#proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/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;
}
}
Posted at Nginx Forum: http://forum.nginx.org/read.php?21,244023,244023#msg-244023
Подробная информация о списке рассылки nginx-ru