mirror of https://github.com/authelia/authelia.git
25 lines
615 B
SYSTEMD
25 lines
615 B
SYSTEMD
[Unit]
|
|
Description=Authelia authentication and authorization server
|
|
Documentation=https://www.authelia.com
|
|
After=multi-user.target
|
|
|
|
[Service]
|
|
Environment=AUTHELIA_SERVER_DISABLE_HEALTHCHECK=true
|
|
ExecStart=/usr/bin/authelia --config /etc/authelia/configuration.yml
|
|
SyslogIdentifier=authelia
|
|
CapabilityBoundingSet=
|
|
NoNewPrivileges=yes
|
|
RestrictNamespaces=yes
|
|
ProtectHome=true
|
|
PrivateDevices=yes
|
|
PrivateUsers=yes
|
|
ProtectControlGroups=yes
|
|
ProtectKernelModules=yes
|
|
ProtectKernelTunables=yes
|
|
SystemCallArchitectures=native
|
|
SystemCallFilter=@system-service
|
|
SystemCallErrorNumber=EPERM
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|