Shortened webserver to srv-web-

This commit is contained in:
2025-07-09 04:27:58 +02:00
parent 1f43536018
commit 66198ca1ec
146 changed files with 218 additions and 218 deletions

View File

@@ -0,0 +1,12 @@
- name: Load iFrame handler JS template
set_fact:
iframe_code: "{{ lookup('template','iframe-handler.js.j2') }}"
- name: Collapse iFrame code into one-liner
set_fact:
iframe_code_one_liner: "{{ iframe_code | to_one_liner }}"
- name: Append iFrame CSP hash
set_fact:
applications: "{{ applications | append_csp_hash(application_id, iframe_code_one_liner) }}"
changed_when: false