mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 11:59:48 -05:00
8679ff91dc
Add systemd files to serve files from /var/lib/rustypaste, automatic user creation via systemd-sysusers and AUTH_TOKEN configuration via rustypaste.env in /etc/rustypaste/rustypaste.env. implements #16
31 lines
701 B
Desktop File
31 lines
701 B
Desktop File
[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
|