如果在url中没有斜杠,则nginx或apache添加端口

时间:2013-12-16 15:32:47

标签: php apache web nginx

我有nginx + apache + php配置。 如果在我的浏览器中我写“http://example.com”服务器将我重定向到“http // example.com:8080”(8080是我的Apache端口),但如果我添加斜杠(如example.com/)工作正常。 nginx config:

server {
    location / {
            proxy_pass   http://127.0.0.1:8080;
            proxy_read_timeout 600;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header  X-Forwarded-For   $remote_addr;
            proxy_buffering off;
    }

0 个答案:

没有答案