2016-05-11 13:48:47 -05:00
[Unit]
Description = Caddy HTTP/2 web server
Documentation = https://caddyserver.com/docs
After = network-online.target
Wants = network-online.target systemd-networkd-wait-online.service
[Service]
2017-06-16 03:40:21 -05:00
Restart = on-abnormal
2016-05-11 13:48:47 -05:00
; User and group the process will run as.
User = www-data
Group = www-data
; Letsencrypt-issued certificates will be written to this directory.
2016-11-23 16:12:19 -05:00
Environment = CADDYPATH=/etc/ssl/caddy
2016-05-11 13:48:47 -05:00
; Always set "-root" to something safe in case it gets forgotten in the Caddyfile.
2016-07-05 12:39:04 -05:00
ExecStart = /usr/local/bin/caddy -log stdout -agree=true -conf=/etc/caddy/Caddyfile -root=/var/tmp
2016-05-11 13:48:47 -05:00
ExecReload = /bin/kill -USR1 $MAINPID
2017-06-24 13:15:13 -05:00
; Use graceful shutdown with a reasonable timeout
KillMode = mixed
KillSignal = SIGQUIT
TimeoutStopSec = 5s
2016-05-11 13:48:47 -05:00
; Limit the number of file descriptors; see `man systemd.exec` for more limit settings.
LimitNOFILE = 1048576
; Unmodified caddy is not expected to use more than that.
2017-08-14 11:42:05 -05:00
LimitNPROC = 512
2016-05-11 13:48:47 -05:00
; Use private /tmp and /var/tmp, which are discarded after caddy stops.
PrivateTmp = true
2018-02-03 13:13:23 -05:00
; Use a minimal /dev (May bring additional security if switched to 'true', but it may not work on Raspberry Pi's or other devices, so it has been disabled in this dist.)
PrivateDevices = false
2016-05-11 13:48:47 -05:00
; Hide /home, /root, and /run/user. Nobody will steal your SSH-keys.
ProtectHome = true
; Make /usr, /boot, /etc and possibly some more folders read-only.
ProtectSystem = full
; … except /etc/ssl/caddy, because we want Letsencrypt-certificates there.
; This merely retains r/w access rights, it does not add any new. Must still be writable on the host!
ReadWriteDirectories = /etc/ssl/caddy
2016-09-23 17:50:39 -05:00
; The following additional security directives only work with systemd v229 or later.
2018-01-30 09:19:02 -05:00
; They further restrict privileges that can be gained by caddy. Uncomment if you like.
2016-09-23 17:50:39 -05:00
; Note that you may have to add capabilities required by any plugins in use.
;CapabilityBoundingSet=CAP_NET_BIND_SERVICE
;AmbientCapabilities=CAP_NET_BIND_SERVICE
;NoNewPrivileges=true
2016-05-11 13:48:47 -05:00
[Install]
WantedBy = multi-user.target