Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Missing IPv6 argument #265

Closed
evertramos opened this issue Apr 3, 2021 · 2 comments
Closed

[BUG] Missing IPv6 argument #265

evertramos opened this issue Apr 3, 2021 · 2 comments
Assignees
Labels
Milestone

Comments

@evertramos
Copy link
Owner

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

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

@evertramos evertramos self-assigned this Apr 3, 2021
@evertramos evertramos added this to the v0.5.2 milestone Apr 8, 2021
@Zageron
Copy link

Zageron commented Apr 14, 2021

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
Copy link
Owner Author

Issued solved on v0.5.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants