mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 03:49:47 -05:00
32 lines
701 B
SYSTEMD
32 lines
701 B
SYSTEMD
|
[Unit]
|
||
|
Description=Rustypaste server
|
||
|
After=network-online.target
|
||
|
Wants=network-online.target systemd-networkd-wait-online.service
|
||
|
|
||
|
[Service]
|
||
|
User=rustypaste
|
||
|
Group=rustypaste
|
||
|
ExecStart=/usr/bin/rustypaste
|
||
|
ReadWritePaths=/var/lib/rustypaste
|
||
|
ReadOnlyPaths=/etc/rustypaste
|
||
|
|
||
|
WorkingDirectory=/var/lib/rustypaste
|
||
|
Environment="CONFIG=/etc/rustypaste/config.toml"
|
||
|
EnvironmentFile=/etc/rustypaste/rustypaste.env
|
||
|
|
||
|
# Hardening options
|
||
|
CapabilityBoundingSet=
|
||
|
AmbientCapabilities=
|
||
|
NoNewPrivileges=true
|
||
|
ProtectHome=true
|
||
|
ProtectSystem=strict
|
||
|
ProtectKernelTunables=true
|
||
|
ProtectKernelModules=true
|
||
|
ProtectControlGroups=true
|
||
|
PrivateTmp=true
|
||
|
PrivateDevices=true
|
||
|
LockPersonality=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|