Skip to content

[BUG] Missing IPv6 argument  #265

Closed
Closed
@evertramos

Description

@evertramos
Owner

Need to add ENABLE_IPV6=trueto docker-compose.yml file, as of

https://github.com/nginx-proxy/nginx-proxy#ipv6-support

Activity

self-assigned this
on Apr 3, 2021
added this to the v0.5.2 milestone on Apr 8, 2021
Zageron

Zageron commented on Apr 14, 2021

@Zageron

fyi, for people looking for solution

services:
  nginx-proxy-automation-web:
    image: nginx:${NGINX_IMAGE_VERSION:-stable-alpine}
    labels:
        com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
    container_name: ${NGINX_WEB_SEVICE_NAME:-nginx-proxy-automation-web}
    restart: always
    ports:
      - "${IPv4:-0.0.0.0}:${DOCKER_HTTP_:-80}:80"
      - "${IPv4:-0.0.0.0}:${DOCKER_HTTPS:-443}:443"
      - "${IPv6:-::0}:${DOCKER_HTTP_:-80}:80"
      - "${IPv6:-::0}:${DOCKER_HTTPS:-443}:443"
    environment:
      ENABLE_IPV6: "true"
      SSL_POLICY: ${SSL_POLICY:-Mozilla-Intermediate}
    volumes:
      - ${NGINX_FILES_PATH:-./data}/conf.d:/etc/nginx/conf.d
      - ${NGINX_FILES_PATH:-./data}/vhost.d:/etc/nginx/vhost.d
      - ${NGINX_FILES_PATH:-./data}/html:/usr/share/nginx/html
      - ${NGINX_FILES_PATH:-./data}/certs:/etc/nginx/certs:ro
      - ${NGINX_FILES_PATH:-./data}/htpasswd:/etc/nginx/htpasswd:ro
    logging:
      driver: ${NGINX_WEB_LOG_DRIVER:-json-file}
      options:
        max-size: ${NGINX_WEB_LOG_MAX_SIZE:-4m}
        max-file: ${NGINX_WEB_LOG_MAX_FILE:-10}
evertramos

evertramos commented on Apr 21, 2021

@evertramos
OwnerAuthor

Issued solved on v0.5.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

Projects

No projects

Relationships

None yet

    Development

    No branches or pull requests

      Participants

      @evertramos@Zageron

      Issue actions

        [BUG] Missing IPv6 argument · Issue #265 · evertramos/nginx-proxy-automation