mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 15:28:12 +02:00
Updated baserow CSP adn variables for new Infinito.Nexus structure
This commit is contained in:
@@ -22,3 +22,14 @@ server:
|
||||
domains:
|
||||
canonical:
|
||||
- baserow.{{ PRIMARY_DOMAIN }}
|
||||
csp:
|
||||
whitelist:
|
||||
worker-src:
|
||||
- "blob:"
|
||||
connect-src:
|
||||
- "https://sentry.com/"
|
||||
flags:
|
||||
script-src-elem:
|
||||
unsafe-inline: true
|
||||
style-src:
|
||||
unsafe-inline: true
|
@@ -2,8 +2,8 @@
|
||||
|
||||
application:
|
||||
{% include 'roles/docker-container/templates/base.yml.j2' %}
|
||||
image: "{{ baserow_image }}:{{ baserow_version }}"
|
||||
container_name: {{ baserow_name }}
|
||||
image: "{{ BASEROW_IMAGE }}:{{ BASEROW_VERSION }}"
|
||||
container_name: {{ BASEROW_CONTAINER }}
|
||||
volumes:
|
||||
- data:/baserow/data
|
||||
ports:
|
||||
@@ -13,6 +13,6 @@
|
||||
|
||||
{% include 'roles/docker-compose/templates/volumes.yml.j2' %}
|
||||
data:
|
||||
name: {{ baserow_volume }}
|
||||
name: {{ BASEROW_VOLUME }}
|
||||
|
||||
{% include 'roles/docker-compose/templates/networks.yml.j2' %}
|
@@ -1,5 +1,8 @@
|
||||
# All Configuration Options:
|
||||
# https://baserow.io/docs/installation/configuration
|
||||
|
||||
# Public URL
|
||||
BASEROW_PUBLIC_URL={{ domains | get_url(application_id, WEB_PROTOCOL) }}
|
||||
BASEROW_PUBLIC_URL={{ BASEROW_PUBLIC_URL }}
|
||||
|
||||
# Email Server Configuration
|
||||
EMAIL_SMTP={{ SYSTEM_EMAIL.SMTP | upper }}
|
||||
|
@@ -1,7 +1,11 @@
|
||||
# General
|
||||
application_id: "web-app-baserow"
|
||||
database_password: "{{ applications | get_app_conf(application_id, 'credentials.database_password', True) }}"
|
||||
database_password: "{{ applications | get_app_conf(application_id, 'credentials.database_password') }}"
|
||||
database_type: "postgres"
|
||||
baserow_version: "{{ applications | get_app_conf(application_id, 'docker.services.baserow.version', True) }}"
|
||||
baserow_image: "{{ applications | get_app_conf(application_id, 'docker.services.baserow.image', True) }}"
|
||||
baserow_name: "{{ applications | get_app_conf(application_id, 'docker.services.baserow.name', True) }}"
|
||||
baserow_volume: "{{ applications | get_app_conf(application_id, 'docker.volumes.data', True) }}"
|
||||
|
||||
# Baserow
|
||||
BASEROW_PUBLIC_URL: "{{ domains | get_url(application_id, WEB_PROTOCOL) }}"
|
||||
BASEROW_VERSION: "{{ applications | get_app_conf(application_id, 'docker.services.baserow.version') }}"
|
||||
BASEROW_IMAGE: "{{ applications | get_app_conf(application_id, 'docker.services.baserow.image') }}"
|
||||
BASEROW_CONTAINER: "{{ applications | get_app_conf(application_id, 'docker.services.baserow.name') }}"
|
||||
BASEROW_VOLUME: "{{ applications | get_app_conf(application_id, 'docker.volumes.data') }}"
|
||||
|
Reference in New Issue
Block a user