diff --git a/playbooks/apps/all.yaml b/playbooks/apps/all.yaml index a1205ca..d8ee421 100644 --- a/playbooks/apps/all.yaml +++ b/playbooks/apps/all.yaml @@ -4,7 +4,6 @@ - import_playbook: charasheet.yaml # noqa: name[play] - import_playbook: checkout.yaml # noqa: name[play] - import_playbook: code.yaml # noqa: name[play] -- import_playbook: display.yaml # noqa: name[play] - import_playbook: ghost.yaml # noqa: name[play] - import_playbook: git.yaml # noqa: name[play] - import_playbook: goatcounter.yaml # noqa: name[play] diff --git a/playbooks/apps/display.yaml b/playbooks/apps/display.yaml deleted file mode 100644 index d680b39..0000000 --- a/playbooks/apps/display.yaml +++ /dev/null @@ -1,24 +0,0 @@ ---- -- name: Display - hosts: servers - gather_facts: false - tasks: - - name: Fix git config - community.general.git_config: - scope: global - name: merge.conflictstyle - value: diff3 - - name: Pull git repo - ansible.builtin.git: - executable: /usr/bin/git - repo: https://git.augendre.info/gaugendre/display.git - dest: "{{ dir }}/sources" - version: HEAD # noqa: latest[git] # we want the latest revision - - name: Docker - ansible.builtin.include_role: - name: docker - - vars: - docker_app_name: display - docker_build: always - dir: /mnt/data/{{ docker_app_name }} diff --git a/playbooks/apps/files/Caddyfile b/playbooks/apps/files/Caddyfile index 033638e..946f75f 100644 --- a/playbooks/apps/files/Caddyfile +++ b/playbooks/apps/files/Caddyfile @@ -258,12 +258,7 @@ nextcloud-kibana.augendre.info { reverse_proxy localhost:9009 } -display.augendre.info { - import common_headers - import internal - header Content-Security-Policy "default-src 'self' https://*.augendre.info; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'; frame-ancestors https://*.augendre.info; connect-src 'self' https://*.augendre.info https://download.data.grandlyon.com" - reverse_proxy localhost:9010 -} +# port 9010 is available aio.augendre.info { import common_headers diff --git a/playbooks/apps/files/display/docker-compose.yaml b/playbooks/apps/files/display/docker-compose.yaml deleted file mode 100644 index 18fef18..0000000 --- a/playbooks/apps/files/display/docker-compose.yaml +++ /dev/null @@ -1,9 +0,0 @@ -services: - app: - build: - context: sources - restart: always - labels: - - "com.centurylinklabs.watchtower.enable=false" - ports: - - "127.0.0.1:9010:80" diff --git a/playbooks/apps/files/display/update b/playbooks/apps/files/display/update deleted file mode 100755 index 414bed7..0000000 --- a/playbooks/apps/files/display/update +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -git -C ./sources pull -docker compose --ansi never up -d --build