Nginx背后是Traefik Docker Swarm模式真正的ip

时间:2017-06-19 21:04:46

标签: nginx docker docker-swarm docker-swarm-mode traefik

我在Docker swarm环境中使用Traefik作为nginx服务前的反向代理。这是我的docker-stack.yml:

traefik:
    image: traefik
    command: -c /dev/null --web --docker --docker.swarmmode --docker.watch --docker.domain=domain --logLevel=DEBUG
    ports:
      - "8080:8080"
      - "80:80"
      - "443:443"
    networks:
       - app
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    deploy:
      placement:
        constraints: [node.role == manager]

nginx:
    image: nginx
    networks:
      - app
    deploy:
      labels:
        traefik.port: 80
        traefik.docker.network: app
        traefik.frontend.rule: "Host:app.domain"

一切正常但我需要在我的Nginx访问日志中使用真正的客户端IP,而不是像10.0.1.37那样

如何让真正的客户端ip?

谢谢,

1 个答案:

答案 0 :(得分:5)

此问题已在github #614上讨论过。

  

当上游服务收到从Traefik转发的请求时,X-Forwarded-For标头包含来自覆盖网络的IP地址,而不是实际的客户端地址。

要解决此问题,您可以使用declaring service ports in docker-compose >=3.2 (LONG SYNTAX)的新方式。

然后确保traefik已连接到主机网络,并将发送正确的X-Forwarded-For标头(请参阅下面的mode: host以获取80端口):

version: "3.2"
services:
  traefik:
    ...
    ports:
      - "8080:8080"
      - target: 80
        published: 80
        protocol: tcp
        mode: host
      - "443:443"
    ...

最后,您必须更改http {} section中的nginx log_format。这可以通过nginx.conf配置文件的卷绑定来完成:

nginx:
  ..
  volumes:
    - /data/nginx/nginx.conf:/etc/nginx/nginx.conf

你有nginx.conf这个:

http {
  ...
  log_format main '$http_x_forwarded_for - $remote_user [$time_local] '
  '"$request" $status $body_bytes_sent "$http_referer" '
  '"$http_user_agent"' ;

在AWS ec2上测试,traefik_nginx服务(我称之为我的堆栈traefik)的日志如下:

$ docker service logs -f traefik_nginx
...
traefik_nginx.1.qpxyjheql5uk@xxx    | 82.253.xxx.xxx - - [20/Jun/2017:08:46:51 +0000] "GET / HTTP/1.1" 200 612 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.104 Safari/537.36"