mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-10 06:04:15 +00:00
Fix Komga port
This commit is contained in:
parent
d33ff36d2e
commit
b00c2e2917
1 changed files with 2 additions and 3 deletions
|
@ -5,7 +5,6 @@
|
|||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
# mode: 0755
|
||||
with_items:
|
||||
- "{{ komga_data_directory }}"
|
||||
- "{{ komga_data_directory }}/config"
|
||||
|
@ -22,7 +21,7 @@
|
|||
- "{{ komga_data_directory }}/config:/config:rw"
|
||||
network_mode: "bridge"
|
||||
ports:
|
||||
- "{{ komga_port_http }}:8080"
|
||||
- "{{ komga_port_http }}:25600"
|
||||
env:
|
||||
TZ: "{{ ansible_nas_timezone }}"
|
||||
PUID: "{{ komga_user_id }}"
|
||||
|
@ -35,7 +34,7 @@
|
|||
traefik.http.routers.komga.tls.certresolver: "letsencrypt"
|
||||
traefik.http.routers.komga.tls.domains[0].main: "{{ ansible_nas_domain }}"
|
||||
traefik.http.routers.komga.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
||||
traefik.http.services.komga.loadbalancer.server.port: "8080"
|
||||
traefik.http.services.komga.loadbalancer.server.port: "25600"
|
||||
when: komga_enabled is true
|
||||
|
||||
- name: Stop Komga
|
||||
|
|
Loading…
Reference in a new issue