mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 15:28:12 +02:00
Renamed general and mode constants and implemented a check to verify that constants are just defined ones over the whole repository
This commit is contained in:
@@ -32,7 +32,7 @@ server:
|
||||
script-src-elem:
|
||||
- "https://cdn.gtranslate.net" # Necessary for translation plugins
|
||||
- "https://translate.google.com" # Necessary for translation plugins
|
||||
- "blog.{{ primary_domain }}"
|
||||
- "blog.{{ PRIMARY_DOMAIN }}"
|
||||
style-src:
|
||||
- "https://fonts.bunny.net"
|
||||
frame-src:
|
||||
@@ -40,7 +40,7 @@ server:
|
||||
- "*"
|
||||
domains:
|
||||
canonical:
|
||||
- "blog.{{ primary_domain }}"
|
||||
- "blog.{{ PRIMARY_DOMAIN }}"
|
||||
docker:
|
||||
services:
|
||||
database:
|
||||
|
@@ -4,6 +4,6 @@ WORDPRESS_DB_PASSWORD= "{{database_password}}"
|
||||
WORDPRESS_DB_NAME= "{{database_name}}"
|
||||
|
||||
# Debug flags
|
||||
WP_DEBUG={{ enable_debug | lower }}
|
||||
WP_DEBUG_LOG={{ enable_debug | lower }}
|
||||
WP_DEBUG_DISPLAY={{ enable_debug | lower }}
|
||||
WP_DEBUG={{ MODE_DEBUG | lower }}
|
||||
WP_DEBUG_LOG={{ MODE_DEBUG | lower }}
|
||||
WP_DEBUG_DISPLAY={{ MODE_DEBUG | lower }}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
users: # Credentials
|
||||
administrator: # Wordpress administrator
|
||||
username: "administrator"
|
||||
email: "administrator@{{ primary_domain }}"
|
||||
email: "administrator@{{ PRIMARY_DOMAIN }}"
|
@@ -242,4 +242,4 @@ discourse_settings:
|
||||
#
|
||||
- name: discourse_logs
|
||||
key: logs-enabled
|
||||
value: "{{ enable_debug }}"
|
||||
value: "{{ MODE_DEBUG }}"
|
||||
|
@@ -17,7 +17,7 @@ oidc_settings:
|
||||
redirect_on_logout: true # Redirect users after logout to the login screen or homepage.
|
||||
redirect_user_back: true # Return users to their original URL after successful login.
|
||||
#acr_values: "{{ oidc.client.acr_values | default('') }}" # ACR values defining required authentication context (e.g., MFA level).
|
||||
enable_logging: "{{ enable_debug }}" # Enable detailed plugin logging for debugging and auditing.
|
||||
enable_logging: "{{ MODE_DEBUG }}" # Enable detailed plugin logging for debugging and auditing.
|
||||
# log_limit: "{{ oidc.client.log_limit | default('') }}" # Maximum number of log entries to retain before pruning.
|
||||
no_sslverify: false # The flag to enable/disable SSL verification during authorization.
|
||||
http_request_timeout: 5 # The timeout for requests made to the IDP. Default value is 5.
|
||||
|
Reference in New Issue
Block a user