diff --git a/inventories/vagrant/host_vars/backend/traefik.yml b/inventories/vagrant/host_vars/backend/traefik.yml index 4e1bedd..95459b5 100644 --- a/inventories/vagrant/host_vars/backend/traefik.yml +++ b/inventories/vagrant/host_vars/backend/traefik.yml @@ -32,6 +32,10 @@ traefik_dmz_exposed_services: domain: forms.local.test port: 443 protocol: https + - name: bookstack + domain: wiki.local.test + port: 443 + protocol: https # Example: Add more services as you deploy them # - name: forgejo # domain: git.example.com diff --git a/inventories/vagrant/hosts.yml b/inventories/vagrant/hosts.yml index 3aef682..30d2fd9 100644 --- a/inventories/vagrant/hosts.yml +++ b/inventories/vagrant/hosts.yml @@ -85,6 +85,6 @@ all: hosts: backend: - opnform_servers: + bookstack_servers: hosts: backend: \ No newline at end of file diff --git a/playbooks/site.yml b/playbooks/site.yml index d46b5b7..ae7f196 100644 --- a/playbooks/site.yml +++ b/playbooks/site.yml @@ -83,8 +83,14 @@ roles: - digitalboard.core.homarr -- name: Deploy opnform service - hosts: opnform_servers - become: yes +#- name: Deploy opnform service + #hosts: opnform_servers + #become: yes + #roles: + #- digitalboard.core.opnform + +- name: Deploy BookStack service + hosts: bookstack_servers + become: true roles: - - digitalboard.core.opnform + - digitalboard.core.bookstack