久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      nginx反向代理tomcat程序,資源代碼404解決方法

      nginx簡(jiǎn)單的反向代理一般是

         server{                  listen      80;                  server_name   localhost;                  index index.html ;       location / {               proxy_pass      https://192.168.1.x/;           }        }

      這是最簡(jiǎn)單的nginx反向代理,用前輩的話(huà)來(lái)說(shuō)最low的方式。我就用這種方式代理,頁(yè)面服務(wù)不正常出現(xiàn)很多404,
      其實(shí)很簡(jiǎn)單,修改如下:

        location / {          proxy_pass https://192.168.1.x/          proxy_set_header Host $host:${server_port};          }
      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)