mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-25 03:38:59 +02:00
Compare commits
2 Commits
b2df1ef649
...
cc9b634bb8
Author | SHA1 | Date | |
---|---|---|---|
cc9b634bb8 | |||
28c298636d |
@ -91,6 +91,7 @@ class FilterModule(object):
|
|||||||
'frame-ancestors',
|
'frame-ancestors',
|
||||||
'frame-src',
|
'frame-src',
|
||||||
'script-src',
|
'script-src',
|
||||||
|
'script-src-elem',
|
||||||
'style-src',
|
'style-src',
|
||||||
'font-src',
|
'font-src',
|
||||||
'worker-src',
|
'worker-src',
|
||||||
@ -115,11 +116,11 @@ class FilterModule(object):
|
|||||||
tokens.append(f"{web_protocol}://{matomo_domain}")
|
tokens.append(f"{web_protocol}://{matomo_domain}")
|
||||||
|
|
||||||
# ReCaptcha integration: allow loading scripts from Google if feature enabled
|
# ReCaptcha integration: allow loading scripts from Google if feature enabled
|
||||||
if (
|
if self.is_feature_enabled(applications, 'recaptcha', application_id):
|
||||||
self.is_feature_enabled(applications, 'recaptcha', application_id)
|
if directive == 'script-src':
|
||||||
and directive == 'script-src'
|
tokens.append('https://www.google.com')
|
||||||
):
|
if directive == 'script-src-elem':
|
||||||
tokens.append('https://www.google.com')
|
tokens.append('https://www.gstatic.com')
|
||||||
|
|
||||||
# Enable loading via ancestors
|
# Enable loading via ancestors
|
||||||
if (
|
if (
|
||||||
|
@ -3,6 +3,11 @@
|
|||||||
- name: "include docker-compose role"
|
- name: "include docker-compose role"
|
||||||
include_role:
|
include_role:
|
||||||
name: docker-compose
|
name: docker-compose
|
||||||
|
vars:
|
||||||
|
database_instance: "{{ application_id }}"
|
||||||
|
database_password: "{{ applications[application_id].credentials.postgresql_secret }}"
|
||||||
|
database_username: "postgres"
|
||||||
|
database_name: "" # Multiple databases
|
||||||
|
|
||||||
- name: "Seed BigBlueButton Database for Backup"
|
- name: "Seed BigBlueButton Database for Backup"
|
||||||
include_tasks: "{{ playbook_dir }}/roles/backup-docker-to-local/tasks/seed-database-to-backup.yml"
|
include_tasks: "{{ playbook_dir }}/roles/backup-docker-to-local/tasks/seed-database-to-backup.yml"
|
||||||
|
@ -15,3 +15,9 @@ features:
|
|||||||
domains:
|
domains:
|
||||||
canonical:
|
canonical:
|
||||||
- "meet.{{ primary_domain }}"
|
- "meet.{{ primary_domain }}"
|
||||||
|
csp:
|
||||||
|
flags:
|
||||||
|
script-src:
|
||||||
|
unsafe-inline: true
|
||||||
|
style-src:
|
||||||
|
unsafe-inline: true
|
Loading…
x
Reference in New Issue
Block a user