Updated baserow CSP adn variables for new Infinito.Nexus structure

This commit is contained in:
2025-08-26 22:20:31 +02:00
parent 97f4045c68
commit 942e8c9c12
4 changed files with 30 additions and 12 deletions

View File

@@ -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' %}

View File

@@ -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 }}