Nginx

Nginx反向代理

2019-01-07  本文已影响1人  王勇1024
http {
        server
        {
            listen  80;
            server_name    www.imcto.com.cn;
            location /
            {
                proxy_pass http://localhost:8787/xwiki/bin/view/;
            }

            location /xwiki/
            {
                proxy_pass http://localhost:8787/xwiki/;
            }

        }
}
上一篇下一篇

猜你喜欢

热点阅读