我這個位置的元素:proxy_pass在nginx的發佈web應用不同的目錄
location ~* ^/publicapp {
proxy_pass https://myserver.domain.local;
}
myserver.domain.local主機位於/ MyApp的Web應用程序服務器。 我想通過https://www.mywebsite.com/publicapp將其公開。我如何告訴nginx將/ myapp轉換爲/ publicapp? 請記住,我使用〜*來允許不區分大小寫。因此,我不能在proxy_pass上使用URI。
親切的問候, 凱文
不幸的是,這使得在MYSERVER nginx的請求/老.domain.local。 – bitfrickler
你有沒有在myserver.domain.local rewrete規則?正如你所看到的,我們這裏沒有'/ old'。 – pythagor
對不起。我的意思是/ publicapp。 – bitfrickler