41 lines
1.3 KiB
Desktop File
41 lines
1.3 KiB
Desktop File
# 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 web server
|
|
Documentation=https://caddyserver.com/docs/
|
|
After=network-online.target
|
|
Wants=network-online.target systemd-networkd-wait-online.service
|
|
StartLimitIntervalSec=14400
|
|
StartLimitBurst=10
|
|
|
|
[Service]
|
|
Environment=XDG_DATA_HOME=/var/lib
|
|
Environment=XDG_CONFIG_HOME=/etc
|
|
ExecStartPre=/usr/bin/caddy validate --config /etc/caddy/Caddyfile
|
|
ExecStart=/usr/bin/caddy run --environ --config /etc/caddy/Caddyfile
|
|
ExecReload=/usr/bin/caddy reload --config /etc/caddy/Caddyfile
|
|
ExecStopPost=/usr/bin/rm -f /run/caddy/admin.socket
|
|
|
|
# Do not allow the process to be restarted in a tight loop. If the
|
|
# process fails to start, something critical needs to be fixed.
|
|
Restart=on-abnormal
|
|
|
|
# Use graceful shutdown with a reasonable timeout
|
|
TimeoutStopSec=5s
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|