nginx映射問題
習慣沉默
習慣沉默 2017-05-16 17:22:16
0
2
499

我在網域為xx.com的伺服器下搭建了一個5000埠的服務a,
想透過nginx做一層映射
把http://xx.com/a 對應到xx.com :5000上,

nginx conf 是這樣寫的

location /a{
    rewrite ^/a/(.*)/ break
    access_log off;
    proxy_pass http://127.0.0.1:5000
}

現在的問題是 輸入http://xx.com/a/ 能正確映射
但是 http://xx.com/a 卻不能, 請問該修改

習慣沉默
習慣沉默

全部回覆(2)
过去多啦不再A梦

雷雷

伊谢尔伦

或許可以醬紫

location /a{
    rewrite ^/a(/|?|#|$)(.*)/ break
    access_log off;
    proxy_pass http://127.0.0.1:5000
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!