久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放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. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      nginx相同域名下不同路徑的轉(zhuǎn)發(fā)

      根據(jù)路徑映射不同的服務(wù)器,比如通過同一域名下二級(jí)路徑規(guī)則做映射,解決一個(gè)域名下實(shí)現(xiàn)多服務(wù)器訪問,來達(dá)到路徑規(guī)則模式下反向代理功能

        server {      listen 80;      server_name dict.google.com;        location /TSP_4A/ {          root /opt/project/;          #alias /opt/project/TSP_4A/;          # 后面的斜杠是一個(gè)關(guān)鍵,沒有斜杠的話就會(huì)傳遞paymentServ到后端節(jié)點(diǎn)導(dǎo)致404;          # 項(xiàng)目路徑:/opt/project/TSP_4A/TSP_4A.html          index TSP_4A.html;          autoindex on;          #autoindex_exact_size off;          #autoindex_localtime on;      }        location /TSP_Datum/ {          root /opt/project/;          #alias /opt/project/TSP_Datum/;          index TSP_Datum.html;          autoindex on;      }        # 其他路徑直接返回403頁面      location / {          return 403;      }        access_log /var/log/nginx/dict-google-com.log;  }

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)