我正在努力尝试重写和重定向网址。
外部网址是www.mydomain:443 / app1。内部网址为https://192.168.1.2:8080。 Nginx运行在192.168.1.1上。我已经尝试了几个关于文档和论坛的事情。下面的代码将我带到设备,但页面返回空白。我试过没有运气重写和重定向。
location /app1/ {
if ($request_uri ~* "/app1/(.*)") {
proxy_pass https://192.168.1.122:8080;
}
}
答案 0 :(得分:0)
根据评论,我认为你的意思是:
server{
listen 443 ssl;
server_name www.mydomain;
#Your ssl stuffs here
location /app {
proxy_pass https://192.168.1.122:8080;
#Other proxy params here
}
}