mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-12 11:38:47 +00:00
Address most of review comments
This commit is contained in:
parent
6ca6255523
commit
df5793a41c
4 changed files with 6 additions and 7 deletions
|
@ -106,8 +106,8 @@ If you have a spare domain name you can configure applications to be accessible
|
|||
* [Transmission](https://transmissionbt.com/) - BitTorrent client (with OpenVPN if you have a supported VPN provider)
|
||||
* [Ubooquity](http://vaemendis.net/ubooquity/) - Book and comic server
|
||||
* [uTorrent](https://www.utorrent.com/) - The best torrent downloading app for beginners
|
||||
* [Virtual Desktop](https://github.com/RattyDAVE/docker-ubuntu-xrdp-mate-custom) - A virtual desktop running on your NAS.
|
||||
* [Valheim Server](https://github.com/mbround18/valheim-docker) - Valheim dedicated gameserver manager.
|
||||
* [Virtual Desktop](https://github.com/RattyDAVE/docker-ubuntu-xrdp-mate-custom) - A virtual desktop running on your NAS.
|
||||
* [Wallabag](https://wallabag.org/) - Save and classify articles. Read them later.
|
||||
* [Watchtower](https://github.com/v2tec/watchtower) - Monitor your Docker containers and update them if a new version is available
|
||||
* [Wireshark](https://www.wireshark.org/) - the world’s foremost and widely-used network protocol analyzer.
|
||||
|
|
|
@ -3,8 +3,7 @@ valheim_enabled: false
|
|||
valheim_available_externally: false
|
||||
|
||||
# directories
|
||||
valheim_home: "{{ docker_home }}/valheim"
|
||||
valheim_data_directory: "{{ valheim_home }}/valheim"
|
||||
valheim_data_directory: "{{ docker_home }}/valheim"
|
||||
|
||||
# network
|
||||
valheim_port_a: "2456"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
state: absent
|
||||
register: result
|
||||
|
||||
- name: Check if joomla is stopped
|
||||
- name: Check if Valheim is stopped
|
||||
ansible.builtin.assert:
|
||||
that:
|
||||
- not result.changed
|
||||
|
|
|
@ -64,9 +64,9 @@
|
|||
labels:
|
||||
traefik.enable: "{{ valheim_available_externally | string }}"
|
||||
traefik.http.routers.valheim.rule: "Host(`{{ valheim_hostname }}.{{ ansible_nas_domain }}`)"
|
||||
# traefik.http.routers.valheim.tls.certresolver: "letsencrypt"
|
||||
# traefik.http.routers.valheim.tls.domains[0].main: "{{ ansible_nas_domain }}"
|
||||
# traefik.http.routers.valheim.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
||||
traefik.http.routers.valheim.tls.certresolver: "letsencrypt"
|
||||
traefik.http.routers.valheim.tls.domains[0].main: "{{ ansible_nas_domain }}"
|
||||
traefik.http.routers.valheim.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
||||
traefik.http.services.valheim.loadbalancer.server.port: "2456"
|
||||
when: valheim_enabled is true
|
||||
|
||||
|
|
Loading…
Reference in a new issue