summarylogtreecommitdiffstats
path: root/systemd.service
blob: 05efc47ed64948834a404aebb4343ec916286501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[Unit]
Description=Light LDAP server
Documentation=https://github.com/lldap/lldap
Requires=network-online.target
After=network-online.target

[Service]
User=lldap
Group=lldap
WorkingDirectory=/var/lib/lldap
ExecStart=/usr/bin/lldap run --config-file /etc/lldap.toml
Restart=always
RestartSec=1

# Hardening
ReadWritePaths=/var/lib/lldap
ReadOnlyPaths=/etc/lldap.toml
UMask=0027
NoNewPrivileges=true
LimitNOFILE=1048576
ProtectSystem=strict
ProtectHome=true
PrivateUsers=yes
PrivateTmp=true
PrivateDevices=true
ProtectHostname=true
ProtectClock=true
ProtectKernelTunables=true
ProtectKernelModules=true
ProtectKernelLogs=true
ProtectControlGroups=true
ProtectProc=invisible
RestrictAddressFamilies=AF_INET AF_INET6 AF_UNIX
RestrictNamespaces=true
LockPersonality=true
MemoryDenyWriteExecute=true
RestrictRealtime=true
RestrictSUIDSGID=true
RemoveIPC=true
CapabilityBoundingSet=
AmbientCapabilities=
SystemCallFilter=@system-service
SystemCallFilter=~@privileged @resources
SystemCallArchitectures=native

[Install]
WantedBy=multi-user.target