我将Nginx设置为docker容器中的反向代理,以链接到容器外部的站点.我有一个vhost配置设置如下(我尝试在home-assistant的位置之前添加^〜):
server { # simple reverse-proxy
listen 80;
location / {
proxy_pass http://192.168.1.99:6789;
}
location ^~ /home-assistant {
proxy_pass http://192.168.1.99:8123/;
}
location /calibre-web/ {
proxy_pass http://192.168.1.99:8181/;
}
}
对于home-assistant和caliber-web站点,页面加载,但我得到404错误的所有其他项目(图像,CSS等…).如果我尝试单击应用程序中的链接,它会将我链接到192.168.1.99/file而不是192.168.1.99/site-folder/file.以下是日志中的一些记录(请注意一个200响应,其他404响应).我在这做错了什么?在此先感谢您的帮助.
192.168.1.6 - randy [15/Aug/2016:03:15:42 +0000] "GET /frontend/panels/dev-template-0a099d4589636ed3038a3e9f020468a7.html HTTP/1.1" 404 199 "http://192.168.1.99/home-assistant/" "Mozilla/5.0 (X11; CrOS x86_64 8350.60.0) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/52.0.2743.85 Safari/537.36"
192.168.1.6 - randy [15/Aug/2016:03:15:42 +0000] "GET /frontend/panels/logbook-66108d82763359a218c9695f0553de40.html HTTP/1.1" 404 199 "http://192.168.1.99/home-assistant/" "Mozilla/5.0 (X11; CrOS x86_64 8350.60.0) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/52.0.2743.85 Safari/537.36"
192.168.1.6 - randy [15/Aug/2016:03:17:54 +0000] "GET /home-assistant/ HTTP/1.1" 200 1654 "-" "Mozilla/5.0 (X11; CrOS x86_64 8350.60.0) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/52.0.2743.85 Safari/537.36"
192.168.1.6 - randy [15/Aug/2016:03:17:55 +0000] "GET /static/icons/favicon-192x192.png HTTP/1.1" 404 91 "http://192.168.1.99/home-assistant/" "Mozilla/5.0 (X11; CrOS x86_64 8350.60.0) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/52.0.2743.85 Safari/537.36"
192.168.1.6 - randy [15/Aug/2016:03:17:55 +0000] "GET /static/core-457d5acd123e7dc38947c07984b3a5e8.js HTTP/1.1" 404 91 "http://192.168.1.99/home-assistant/" "Mozilla/5.0 (X11; CrOS x86_64 8350.60.0) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/52.0.2743.85 Safari/537.36"
Here is a copy of my root nginx.conf.我猜这个错误就在这里,我只是想弄清楚在哪里.
1.替换代理html中的链接
首先,它是在用ngx_http_sub_module向客户端提交结果之前替换从代理应用程序接收的每个链接.默认情况下没有启用它,所以如果你的发行版没有它,你可能需要compile nginx from source(检查这个的可用性)模块运行Nginx -V,它应该在配置参数的某处显示–with-http_sub_module.
location ^~ /home-assistant {
rewrite ^/home-assistant(/.*)$$1 break;
proxy_pass http://192.168.1.99:8123/;
sub_filter "
2.更改容器内的应用程序路径
将docker容器内的应用程序移动到/ home-assistant而不是root,因此它将生成与该路径相关的服务内容中的所有URL而不是root /.这是一个显而易见的(也许是最简单的)解决方案,它根本不需要触摸Nginx配置(而是在docker中编辑配置)
3.根据Referer标头选择上游
根据Referer标头确定应使用哪个上游. Taken from here.看起来非常聪明,虽然我自己也不会在生产中使用它(注意它只适用于css / js文件).
location ~* ^/(css|js)/.+\.(css|js)${
#checking if referer is from home-assistant
if ($http_referer ~ "^.*/home-assistant"){
return 417;
}
#checking if referer is from calibre-web
if ($http_referer ~ "^.*/calibre-web"){
return 418;
}
}
error_page 417 /home-assistant$request_uri;
error_page 418 /calibre-web$request_uri;
location ^~ /home-assistant {
proxy_pass http://192.168.1.99:8123/;
}
location /calibre-web {
proxy_pass http://192.168.1.99:8181/;
}
如果我是你,我会选择#2 – 在容器内移动应用程序作为最简单的&最不容易出错的方式来获得你需要的东西.
附:我完全忘了你可以直接从你的硬盘驱动器提供静态文件,因为你的后端和Nginx在同一台服务器上.它将需要一些依赖于应用程序的配置,但结果您将获得最有效的解决方案..