mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
Update to 2022-07-08 17:00
This commit is contained in:
parent
0319e1f4a1
commit
05356e71fe
@ -27,7 +27,7 @@ php_admin_value[post_max_size] = 100M
|
||||
php_admin_value[upload_max_filesize] = 100M
|
||||
php_admin_value[disable_functions] = system, show_source, symlink, exec, dl, shell_exec, passthru, phpinfo, escapeshellcmd
|
||||
php_admin_value[open_basedir] = {{ bookstack_root_dir }}:/usr/share/pear/:/usr/share/php/
|
||||
php_admin_value[max_execution_time] = 60
|
||||
php_admin_value[max_execution_time] = 180
|
||||
php_admin_value[max_input_time] = 60
|
||||
php_admin_flag[allow_url_include] = off
|
||||
php_admin_flag[allow_url_fopen] = off
|
||||
|
@ -14,6 +14,9 @@
|
||||
{% if vhost.aliases is defined %}
|
||||
ServerAlias {{ vhost.aliases | default([]) | join(' ') }}
|
||||
{% endif %}
|
||||
{% if vhost.proxy_timeout is defined %}
|
||||
ProxyTimeout {{ vhost.proxy_timeout }}
|
||||
{% endif %}
|
||||
{% if vhost.webmaster_email is defined %}
|
||||
ServerAdmin {{ vhost.webmaster_email }}
|
||||
{% endif %}
|
||||
@ -107,6 +110,9 @@
|
||||
{% if vhost.aliases is defined %}
|
||||
ServerAlias {{ vhost.aliases | default([]) | join(' ') }}
|
||||
{% endif %}
|
||||
{% if vhost.proxy_timeout is defined %}
|
||||
ProxyTimeout {{ vhost.proxy_timeout }}
|
||||
{% endif %}
|
||||
{% if vhost.webmaster_email is defined %}
|
||||
ServerAdmin {{ vhost.webmaster_email }}
|
||||
{% endif %}
|
||||
|
BIN
roles/lemonldap_ng/files/logos/scandm_appliance.png
Normal file
BIN
roles/lemonldap_ng/files/logos/scandm_appliance.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
@ -1,7 +1,7 @@
|
||||
---
|
||||
|
||||
# Version to deploy
|
||||
n8n_version: 0.184.0
|
||||
n8n_version: 0.185.0
|
||||
# Root directory where n8n will be installed
|
||||
n8n_root_dir: /opt/n8n
|
||||
# User account under which n8n will run
|
||||
|
@ -10,7 +10,7 @@ pga_src_ip: []
|
||||
# Root dir where the app will be installed
|
||||
pga_root_dir: /opt/pgadmin4_{{ pga_id }}
|
||||
# Version to deploy
|
||||
pga_version: '6.10'
|
||||
pga_version: '6.11'
|
||||
|
||||
# When pg_auth is an empty list, pgAdmin will be in single user mode
|
||||
# You can set it to a list, eg
|
||||
|
@ -2,6 +2,7 @@ SERVER_MODE={{ (pga_auth | length >= 1) | ternary('True','False') }}
|
||||
DEFAULT_SERVER='0.0.0.0'
|
||||
DEFAULT_SERVER_PORT={{ pga_port }}
|
||||
DATA_DIR='{{ pga_root_dir }}/data'
|
||||
AZURE_CREDENTIAL_CACHE_DIR='{{ pga_root_dir }}/data/azurecredentialcache'
|
||||
LOG_FILE='{{ pga_root_dir }}/logs/pgadmin4.log'
|
||||
STORAGE_DIR='{{ pga_root_dir }}/data'
|
||||
SQLITE_PATH='{{ pga_root_dir }}/data/pgadmin4.db'
|
||||
|
Loading…
x
Reference in New Issue
Block a user