我正在设置nginx-代理作为运行应用服务器的 Docker 容器前面的反向代理。它们在单独的 Docker 组合定义中定义。出于某种原因,我得到了一个503
,但我不知道为什么,我已经nginx-proxy
详细阅读了文档。
(我也打开了这个作为 Github 问题为了nginx-proxy
。)
应用服务器最初443
通过10443
主机上公开的 https 提供服务。我已切换到80
通过10443
主机上公开的 http 提供服务。
我可以直接从应用服务器执行 curl,但通过 nginx-proxy 执行 curl 会引发错误
我最初使用的是 nginx-proxy 443
,但80
现在我将其切换到了。
在我添加default.crt
和之前default.key
,我收到连接被拒绝错误。添加它们之后,我收到一个503
。
curl http://foo.example.com:80/apidocs --verbose --insecure
* Hostname was NOT found in DNS cache
* Trying 10.x.x.x...
* Connected to foo.example.com (10.x.x.x) port 80 (#0)
> GET /apidocs HTTP/1.1
> User-Agent: curl/7.35.0
> Host: foo.example.com
> Accept: */*
>
< HTTP/1.1 503 Service Temporarily Unavailable
* Server nginx/1.9.12 is not blacklisted
< Server: nginx/1.9.12
< Date: Thu, 21 Apr 2016 17:26:16 GMT
< Content-Type: text/html
< Content-Length: 213
< Connection: keep-alive
<
<html>
<head><title>503 Service Temporarily Unavailable</title></head>
<body bgcolor="white">
<center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx/1.9.12</center>
</body>
</html>
* Connection #0 to host foo.example.com left intact
以下是我为 nginx-proxy 编写的定义。我使用的network_mode: bridge
是应该工作即使version: 2
。
version: '2'
# Not yet compatible with custom networks in v2 of Compose
services:
nginx:
image: jwilder/nginx-proxy
# Necessary until nginx-proxy fully supports Compose v2 networking
network_mode: bridge
ports:
- "80:80"
restart: always
volumes:
- "certs:/etc/nginx/certs:ro"
- "nginx-log:/var/log/nginx"
- "/var/run/docker.sock:/tmp/docker.sock:ro"
volumes:
certs:
external: true
nginx-log:
external: true
这是我的应用服务器组成:
version: '2'
services:
database:
image: sameersbn/postgresql:9.4-13
restart: always
# Necessary until nginx-proxy fully supports Compose v2 networking
network_mode: bridge
ports:
- "55433:5432"
environment:
- DB_USER=foo
- DB_PASS=...
- DB_NAME=foo_staging
- USERMAP_UID=1000
volumes:
- "foo-data:/var/lib/postgresql"
foo:
image: private-registry.example.com/dswb/foo:1.4.3
restart: always
container_name: "dswb-foo"
links:
- "database:database"
# Necessary until nginx-proxy fully supports Compose v2 networking
network_mode: bridge
ports:
- "10443:80"
volumes:
- "certs:/home/rails/webapp/certs"
environment:
# - "CERT_NAME=example.com"
- "VIRTUAL_HOSTNAME=foo.example.com"
- "VIRTUAL_PORT=80"
- "VIRTUAL_PROTO=http"
command: "bash -c 'rake db:migrate && thin --port 80 --address 0.0.0.0 start'"
volumes:
foo-data:
driver: local
certs:
external: true
自从我切换到端口进行调试后,证书就不那么重要了80
。我有一个通配符证书*.example.com
。我制作了一个名为的副本,foo.example.com
以防 nginx-proxy 找不到它。我尝试了设置和不设置 CERT_NAME
。我现在还生成了这些dhparam
东西。
root@8b02a7deb220:/etc/nginx/certs# ls -la
total 48
drwxr-xr-x 2 root root 4096 Apr 21 18:15 .
drwxr-xr-x 4 root root 4096 Apr 21 18:06 ..
-rw------- 1 root root 3575 Apr 21 18:03 example.com.crt
-rw-r--r-- 1 root root 769 Apr 21 18:03 example.com.dhparam.pem
-rw------- 1 root root 1679 Apr 21 18:03 example.com.key
-rw-r--r-- 1 root root 1838 Apr 21 18:03 default.crt
-rw-r--r-- 1 root root 3268 Apr 21 18:03 default.key
-rw------- 1 root root 3575 Apr 21 17:37 foo.example.com.crt
-rw-r--r-- 1 root root 769 Apr 21 18:15 foo.example.com.dhparam.pem
-rw------- 1 root root 1679 Apr 21 17:37 foo.example.com.key
这是我 curl 时 nginx-proxy 日志中唯一显示的内容:
nginx.1 | foo.example.com 10.x.x.x - - [21/Apr/2016:17:26:16 +0000] "GET /apidocs HTTP/1.1" 503 213 "-" "curl/7.35.0"
应用服务器日志中没有显示任何内容,这意味着它看不到该请求。
我该如何调试?有没有更好的日志?
答案1
我会先将你的 nginx 日志设置为调试,然后检查请求在哪里抛出 503
server {
#other config
error_log /var/logs/nginx/example.com.error.log debug;
#other config
}
答案2
您说端口 80 到 10443,您的 Docker 安装是否仍提供 HTTPS?如果是,请尝试将两者都设置为 HTTP,并在 Docker 上使用不太令人困惑的端口 10080。