Nginx
0
Вклад в тег
location /fias {
fastcgi_pass 127.0.0.1:9010;
include fastcgi.conf;
}
Root URL:
http://lolhost/fias/lol
Location URL:
http://lolhost/fias/lol
Full URL:
http://lolhost/fias/lol?
location /fias {
proxy_pass http://127.0.0.1:9010/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
Root URL:
http://lolhost
Location URL:
http://lolhost//lol
Full URL:
http://lolhost//lol