mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-07-27 08:15:54 +02:00
Update to 2023-07-25 16:00
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
---
|
||||
|
||||
# Version to deploy
|
||||
n8n_version: 0.233.1
|
||||
n8n_version: 1.0.5
|
||||
# Root directory where n8n will be installed
|
||||
n8n_root_dir: /opt/n8n
|
||||
# User account under which n8n will run
|
||||
@@ -14,30 +14,13 @@ n8n_port: 8021
|
||||
# List of IP / CIDR allowed to access n8n_port
|
||||
n8n_src_ip: []
|
||||
|
||||
n8n_db_server: "{{ mysql_server | default('localhost') }}"
|
||||
n8n_db_port: 3306
|
||||
n8n_db_server: "{{ pg_server | default('localhost') }}"
|
||||
n8n_db_port: 5432
|
||||
n8n_db_name: n8n
|
||||
n8n_db_user: n8n
|
||||
# If not defined, a random one will be created and stored in the {{ n8n_root_dir }}/meta/ansible_dbpass
|
||||
#n8n_db_pass: S3cR3t.
|
||||
|
||||
# Config dfirectives, will be translated to json in {{ n8n_root_dir }}/etc/n8n.json
|
||||
n8n_config_base:
|
||||
database:
|
||||
type: mysqldb
|
||||
mysqldb:
|
||||
database: "{{ n8n_db_name }}"
|
||||
host: "{{ n8n_db_server }}"
|
||||
port: "{{ n8n_db_port }}"
|
||||
user: "{{ n8n_db_user }}"
|
||||
password: "{{ n8n_db_pass }}"
|
||||
generic:
|
||||
timezone: "{{ system_tz | default('Europe/Paris') }}"
|
||||
port: "{{ n8n_port }}"
|
||||
# This lets you override just part of the defaults
|
||||
n8n_config_extra: {}
|
||||
n8n_config: "{{ n8n_config_base | combine(n8n_config_extra,recursive=True) }}"
|
||||
|
||||
# An optional list of extra module to install
|
||||
n8n_extra_node_modules: []
|
||||
|
||||
@@ -65,11 +48,6 @@ n8n_mem_limit: 2048
|
||||
# NODE_FUNCTION_ALLOW_BUILTIN: request-promise-native
|
||||
n8n_env_var: {}
|
||||
|
||||
# Should user management be enabled ?
|
||||
# If False, n8n editor will be accessible wihtout authentication at all
|
||||
# so be sure to protect it by other mean (eg, at the reverse proxy level)
|
||||
n8n_user_management: True
|
||||
|
||||
# SMTP settings
|
||||
n8n_smtp_server: localhost
|
||||
n8n_smtp_port: 25
|
||||
|
Reference in New Issue
Block a user