mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-26 03:23:11 +00:00
Configurable The Lounge external access
This commit is contained in:
parent
d57aa8ec58
commit
9f42bcc86e
2 changed files with 7 additions and 1 deletions
|
@ -487,13 +487,14 @@ jackett_data_directory: "{{ docker_home }}/jackett"
|
|||
###
|
||||
### The Lounge
|
||||
###
|
||||
thelounge_available_externally: "false"
|
||||
thelounge_data_directory: "{{ docker_home }}/thelounge"
|
||||
|
||||
###
|
||||
### Bitwarden
|
||||
###
|
||||
bitwarden_data_directory: "{{ docker_home }}/bitwarden"
|
||||
bitwarden_available_externally: "false"
|
||||
bitwarden_data_directory: "{{ docker_home }}/bitwarden"
|
||||
|
||||
# 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,
|
||||
|
|
|
@ -26,4 +26,9 @@
|
|||
- "/var/run/dbus:/var/run/dbus"
|
||||
restart_policy: unless-stopped
|
||||
memory: 1g
|
||||
labels:
|
||||
traefik.backend: "thelounge"
|
||||
traefik.frontend.rule: "Host:thelounge.{{ ansible_nas_domain }}"
|
||||
traefik.enable: "{{ thelounge_available_externally }}"
|
||||
traefik.port: "9000"
|
||||
|
||||
|
|
Loading…
Reference in a new issue