mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-28 03:05:04 +00:00
18 lines
No EOL
669 B
YAML
18 lines
No EOL
669 B
YAML
---
|
|
# External Access
|
|
# Traefik will allow access to certain applications externally. To enable this you'll either; a domain name that points to your
|
|
# home static IP address, the cloudflare with the cloudflare_ddns dynamic DNS container enabled, or use a dynamic DNS provider like no-ip.
|
|
# You'll also need to map ports 80 and 443 from your router to your ansible-nas server, then enable the per-app "available_externally"
|
|
# settings.
|
|
traefik_enabled: false
|
|
|
|
# directories
|
|
traefik_data_directory: "{{ docker_home }}/traefik"
|
|
|
|
# network
|
|
traefik_port_http: "80"
|
|
traefik_port_https: "443"
|
|
traefik_port_ui: "8083"
|
|
|
|
traefik_docker_image: traefik:v1.7
|
|
traefik_debug: "false" |