Implement a role for deploying Caddy

This commit is contained in:
Alexander Gorelyshev
2026-05-15 14:48:20 +04:00
parent 970c6d3266
commit e5db5ab20b
11 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
# caddy.service
#
# For using Caddy with a config file.
#
# Make sure the ExecStart and ExecReload commands are correct
# for your installation.
#
# See https://caddyserver.com/docs/install for instructions.
#
# WARNING: This service does not use the --resume flag, so if you
# use the API to make changes, they will be overwritten by the
# Caddyfile next time the service is restarted. If you intend to
# use Caddy's API to configure it, add the --resume flag to the
# `caddy run` command or use the caddy-api.service file instead.
[Unit]
Description=Caddy
Documentation=https://caddyserver.com/docs/
After=network.target network-online.target
Requires=network-online.target
[Service]
Type=notify
User=caddy
Group=caddy
ExecStart=/usr/bin/caddy run --environ --config {{ caddy_dest_conf_path }}
ExecReload=/usr/bin/caddy reload --config {{ caddy_dest_conf_path }} --force
TimeoutStopSec=5s
LimitNOFILE={{ caddy_limit_nofile }}
PrivateTmp=true
ProtectSystem=full
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
[Install]
WantedBy=multi-user.target