You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
554 B
16 lines
554 B
4 years ago
|
[http]
|
||
|
port = {{ documize_port }}
|
||
|
|
||
|
[database]
|
||
|
{% if documize_db_engine == 'mysql' %}
|
||
|
type = "mysql"
|
||
|
connection = "{{ documize_db_user }}:{{ documize_db_pass }}@tcp({{ documize_db_server }}:{{ documize_db_port }})/{{ documize_db_name }}"
|
||
|
{% elif documize_db_engine == 'postgres' %}
|
||
|
type = "postgresql"
|
||
|
connection = "host={{ documize_db_server }} port={{ documize_db_port }} dbname={{ documize_db_name }} user={{ documize_db_user }} password={{ documize_db_pass }} sslmode=disable"
|
||
|
{% endif %}
|
||
|
salt = "{{ documize_salt }}"
|
||
|
|
||
|
[install]
|
||
|
location = "selfhost"
|