mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-26 10:15:14 +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)
|
* [Transmission](https://transmissionbt.com/) - BitTorrent client (with OpenVPN if you have a supported VPN provider)
|
||||||
* [Ubooquity](http://vaemendis.net/ubooquity/) - Book and comic server
|
* [Ubooquity](http://vaemendis.net/ubooquity/) - Book and comic server
|
||||||
* [uTorrent](https://www.utorrent.com/) - The best torrent downloading app for beginners
|
* [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.
|
* [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.
|
* [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
|
* [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.
|
* [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
|
valheim_available_externally: false
|
||||||
|
|
||||||
# directories
|
# directories
|
||||||
valheim_home: "{{ docker_home }}/valheim"
|
valheim_data_directory: "{{ docker_home }}/valheim"
|
||||||
valheim_data_directory: "{{ valheim_home }}/valheim"
|
|
||||||
|
|
||||||
# network
|
# network
|
||||||
valheim_port_a: "2456"
|
valheim_port_a: "2456"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
state: absent
|
state: absent
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- name: Check if joomla is stopped
|
- name: Check if Valheim is stopped
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- not result.changed
|
- not result.changed
|
||||||
|
|
|
@ -64,9 +64,9 @@
|
||||||
labels:
|
labels:
|
||||||
traefik.enable: "{{ valheim_available_externally | string }}"
|
traefik.enable: "{{ valheim_available_externally | string }}"
|
||||||
traefik.http.routers.valheim.rule: "Host(`{{ valheim_hostname }}.{{ ansible_nas_domain }}`)"
|
traefik.http.routers.valheim.rule: "Host(`{{ valheim_hostname }}.{{ ansible_nas_domain }}`)"
|
||||||
# traefik.http.routers.valheim.tls.certresolver: "letsencrypt"
|
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].main: "{{ ansible_nas_domain }}"
|
||||||
# traefik.http.routers.valheim.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
traefik.http.routers.valheim.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
||||||
traefik.http.services.valheim.loadbalancer.server.port: "2456"
|
traefik.http.services.valheim.loadbalancer.server.port: "2456"
|
||||||
when: valheim_enabled is true
|
when: valheim_enabled is true
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue