fix omit curious message

This commit is contained in:
Dryusdan 2023-02-07 10:30:14 +01:00
parent 644d9f3643
commit e2cac82cc5

View file

@ -13,11 +13,11 @@ service:
# The interface on which to run the webserver
interface: "{{ item.interface | default(":3456") }}"
# Path to Unix socket. If set, it will be created and used instead of tcp
unixsocket: "{{ item.unixsocket | default(omit) }}"
unixsocket: "{{ item.unixsocket | default() }}"
# Permission bits for the Unix socket. Note that octal values must be prefixed by "0o", e.g. 0o660
unixsocketmode: "{{ item.unixmode | default(omit) }}"
unixsocketmode: "{{ item.unixmode | default() }}"
# The URL of the frontend, used to send password reset emails.
frontendurl: "{{ item.frontendurl | default(omit) }}"
frontendurl: "{{ item.frontendurl | default() }}"
# The base path on the file system where the binary and assets are.
# Vikunja will also look in this path for a config file, so you could provide only this variable to point to a folder
# with a config file which will then be used.
@ -66,7 +66,7 @@ database:
# Database user which is used to connect to the database.
user: "{{ item.db_user | default("vikunja") }}"
# Database password
password: "{{ item.db_password | default(omit) }}"
password: "{{ item.db_password | default() }}"
# Database host
host: "{{ item.db_host | default("localhost") }}"
# Database to use
@ -84,11 +84,11 @@ database:
# (see https://pkg.go.dev/github.com/lib/pq?tab=doc#hdr-Connection_String_Parameters)
sslmode: "{{ item.db_maxconnectionlifetime | default("disable") }}"
# The path to the client cert. Only used with postgres.
sslcert: "{{ item.db_sslcert | default(omit) }}"
sslcert: "{{ item.db_sslcert | default() }}"
# The path to the client key. Only used with postgres.
sslkey: "{{ item.db_sslkey | default(omit) }}"
sslkey: "{{ item.db_sslkey | default() }}"
# The path to the ca cert. Only used with postgres.
sslrootcert: "{{ item.db_sslrootcert | default(omit) }}"
sslrootcert: "{{ item.db_sslrootcert | default() }}"
# Enable SSL/TLS for mysql connections. Options: false, true, skip-verify, preferred
tls: {{ item.db_tls | default("false") }}
@ -108,7 +108,7 @@ redis:
# The host of the redis server including its port.
host: '{{ item.redis_host | default("localhost:6379") }}'
# The password used to authenicate against the redis server
password: '{{ item.redis_password | default(omit) }}'
password: '{{ item.redis_password | default() }}'
# 0 means default database
db: {{ item.redis_db | default(0) }}
@ -127,16 +127,16 @@ mailer:
# Whether to enable the mailer or not. If it is disabled, all users are enabled right away and password reset is not possible.
enabled: {{ item.mailer_enabled | default("false") }}
# SMTP Host
host: "{{ item.mailer_host | default(omit) }}"
host: "{{ item.mailer_host | default() }}"
# SMTP Host port.
# **NOTE:** If you're unable to send mail and the only error you see in the logs is an `EOF`, try setting the port to `25`.
port: {{ item.mailer_port | default(587) }}
# SMTP Auth Type. Can be either `plain`, `login` or `cram-md5`.
authtype: "{{ item.mailer_authtype | default("plain") }}"
# SMTP username
username: "{{ item.mailer_user | default(omit) }}"
username: "{{ item.mailer_user | default() }}"
# SMTP password
password: "{{ item.mailer_password | default(omit) }}"
password: "{{ item.mailer_password | default() }}"
# Wether to skip verification of the tls certificate on the server
skiptlsverify: {{ item.mailer_skiptlsverify | default("false") }}
# The default from address when sending emails
@ -307,9 +307,9 @@ metrics:
# If set to true, enables a /metrics endpoint for prometheus to collect metrics about Vikunja.
enabled: {{ item.metrics_enabled | default("false") }}
# If set to a non-empty value the /metrics endpoint will require this as a username via basic auth in combination with the password below.
username: "{{ item.metrics_user | default(omit) }}"
username: "{{ item.metrics_user | default() }}"
# If set to a non-empty value the /metrics endpoint will require this as a password via basic auth in combination with the username below.
password: "{{ item.metrics_password | default(omit) }}"
password: "{{ item.metrics_password | default() }}"
# Provide default settings for new users. When a new user is created, these settings will automatically be set for the user. If you change them in the config file afterwards they will not be changed back for existing users.
defaultsettings: