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.
32 lines
1.0 KiB
32 lines
1.0 KiB
3 years ago
|
---
|
||
|
# defaults file for caddy-ansible
|
||
|
caddy_user: caddy
|
||
|
caddy_home: /home/caddy
|
||
|
caddy_packages: []
|
||
|
caddy_update: true
|
||
|
caddy_bin_dir: /usr/local/bin
|
||
|
caddy_conf_dir: /etc/caddy
|
||
|
caddy_conf_filename: Caddyfile
|
||
|
caddy_github_token: ""
|
||
|
caddy_log_dir: /var/log/caddy
|
||
|
caddy_log_file: stdout
|
||
|
caddy_certs_dir: /etc/ssl/caddy
|
||
|
# additional cli args to pass to caddy
|
||
|
caddy_additional_args: ""
|
||
|
caddy_systemd_network_dependency: true
|
||
|
caddy_systemd_capabilities_enabled: true
|
||
|
caddy_systemd_capabilities: "CAP_NET_BIND_SERVICE"
|
||
|
caddy_systemd_restart: "on-failure" # always, on-success, on-failure, on-abnormal, on-abort, on-watchdog
|
||
|
caddy_systemd_restart_startlimitinterval: "86400"
|
||
|
caddy_systemd_restart_startlimitburst: "5"
|
||
|
caddy_systemd_private_tmp: "true"
|
||
|
caddy_systemd_private_devices: "true"
|
||
|
# Disable this because the git module writes to ~/.ssh
|
||
|
caddy_systemd_protect_home: "false"
|
||
|
caddy_systemd_protect_system: "full"
|
||
|
caddy_systemd_nproc_limit: 0
|
||
|
caddy_setcap: true
|
||
|
caddy_config: "{{ lookup('template', 'templates/Caddyfile.j2') }}"
|
||
|
caddy_environment_variables: {}
|
||
|
caddy_os: linux
|