web-dev-qa-db-ja.com

Docker SwarmはNginxで実際のIP(クライアントホスト)を取得します

NginxとPHP= Docker Swarm Clusterで実行するためのスタックがあります。

PHP=アプリケーションの瞬間、webappにアクセスするクライアントホストからの実際のIPを含むremote_addr($ _SERVER ['REMOTE_ADDR'])を取得する必要があります。

しかし問題は、IPがdocker swarm clusterによってnginxに通知されることです。 10.255.0.2のような内部IPが表示されていますが、実際のIPは、クライアントホストからの外部IP(192.168.101.151など)です。

どうすれば解決できますか?

私のdocker-composeファイル:

version: '3'

services:
  php:
    image: php:5.6
    volumes:
      - /var/www/:/var/www/
      - ./data/log/php:/var/log/php5
    networks:
      - backend
    deploy:
      replicas: 1
  web:
    image: nginx:latest
    ports:
      - "80:80"
    volumes:
      - /var/www/:/var/www/
      - ./data/log/nginx:/var/log/nginx
    networks:
      - backend
networks:
  backend:

私のdefault.conf(vhost.conf)ファイル:

server {
    listen          80;
    root            /var/www;
    index           index.html index.htm index.php;

    access_log  /var/log/nginx/access.log  main;
    error_log   /var/log/nginx/error.log error;

    location / {
        proxy_set_header        Host $Host;
        proxy_set_header        X-Real-IP $remote_addr;
        proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header        X-Forwarded-Proto $scheme;

        try_files   $uri $uri/ /index.php;
    }

    location = /50x.html {
        root   /var/www;
    }

    # set expiration of assets to MAX for caching
    location ~* \.(js|css|gif|png|jp?g|pdf|xml|oga|ogg|m4a|ogv|mp4|m4v|webm|svg|svgz|eot|ttf|otf|woff|ico|webp|appcache|manifest|htc|crx|oex|xpi|safariextz|vcf)(\?[0-9]+)?$ {
            expires max;
            log_not_found off;
    }

    location ~ \.php$ {
        try_files                   $uri =404;
        fastcgi_index               index.php;
        fastcgi_split_path_info     ^(.+\.php)(/.+)$;
        fastcgi_pass                php:9000;
        include                     fastcgi_params;
        fastcgi_param               SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param               PATH_INFO       $fastcgi_path_info;
        fastcgi_read_timeout        300;
    }
}

私のnginx設定ファイル:

user  nginx;
worker_processes    3;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    keepalive_timeout   15;
    client_body_buffer_size     100K;
    client_header_buffer_size   1k;
    client_max_body_size        8m;
    large_client_header_buffers 2 1k;

    gzip             on;
    gzip_comp_level  2;
    gzip_min_length  1000;
    gzip_proxied     expired no-cache no-store private auth;
    gzip_types       text/plain application/x-javascript text/xml text/css application/xml;

    log_format  main  '$remote_addr - $remote_user [$time_local]  "$request_filename" "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    include /etc/nginx/conf.d/*.conf;
}
8
mayconfsbrito

すべてのgithubスレッド( https://github.com/moby/moby/issues/25526 )を読みたくない人のために、私にとって良い答えは設定をこの :

version: '3.7'
services:
  nginx:
    ports:
      - mode: Host
        protocol: tcp
        published: 80
        target: 80
      - mode: Host
        protocol: tcp
        published: 443
        target: 81

これでも内部オーバーレイネットワークは機能しますが、iptablesでいくつかのトリックを使用してこれらのポートを直接コンテナーに転送するため、コンテナー内のサービスはパケットの正しい送信元IPアドレスを参照できます。

Iptablesには、複数のコンテナー間でポートのバランスを調整する機能がないため、1つのコンテナー(コンテナーの複数のレプリカを含む)に1つのポートしか割り当てることができません。

5
Oreste Viron

オーバーレイネットワーク経由ではまだ取得できません。 この長期にわたるGitHubの問題を下から上にスクロールする の場合、プロキシと一緒にSwarmでブリッジネットワークを使用して、この問題を今のところ回避するためのいくつかのオプションが表示されます。

2
Bret Fisher

ポートバインディングモードをホストに変更するとうまくいきました

ports: 
  - mode: Host 
    protocol: tcp 
    published: 8082 
    target: 80

ただし、Webフロントエンドは、Swarmクラスター内の特定のホスト(つまり、.

deploy: 
  placement: 
    constraints: 
      [node.role == manager]
2
Faraz Partoei