Configurable The Lounge external access

This commit is contained in:
David Stephens 2019-04-14 17:28:21 +01:00
parent d57aa8ec58
commit 9f42bcc86e
2 changed files with 7 additions and 1 deletions

View file

@ -487,13 +487,14 @@ jackett_data_directory: "{{ docker_home }}/jackett"
### ###
### The Lounge ### The Lounge
### ###
thelounge_available_externally: "false"
thelounge_data_directory: "{{ docker_home }}/thelounge" thelounge_data_directory: "{{ docker_home }}/thelounge"
### ###
### Bitwarden ### Bitwarden
### ###
bitwarden_data_directory: "{{ docker_home }}/bitwarden"
bitwarden_available_externally: "false" bitwarden_available_externally: "false"
bitwarden_data_directory: "{{ docker_home }}/bitwarden"
# Keep this token secret, this is password to access admin area of your server! # Keep this token secret, this is password to access admin area of your server!
# This token can be anything, but it's recommended to use a long, randomly generated string of characters, # This token can be anything, but it's recommended to use a long, randomly generated string of characters,

View file

@ -26,4 +26,9 @@
- "/var/run/dbus:/var/run/dbus" - "/var/run/dbus:/var/run/dbus"
restart_policy: unless-stopped restart_policy: unless-stopped
memory: 1g memory: 1g
labels:
traefik.backend: "thelounge"
traefik.frontend.rule: "Host:thelounge.{{ ansible_nas_domain }}"
traefik.enable: "{{ thelounge_available_externally }}"
traefik.port: "9000"