Compare commits
2 commits
77b9685231
...
32c51e326e
| Author | SHA1 | Date | |
|---|---|---|---|
| 32c51e326e | |||
| 24bd94dec4 |
2 changed files with 16 additions and 1 deletions
|
|
@ -23,3 +23,4 @@ a670de0f,d271b84,refactor/extract-health-routes-and-server-core,2025-09-05T17:25
|
|||
a670de0f,25a709e,feature/pid-file-service-management,2025-09-05T20:30:13Z,michael,git,lua-api
|
||||
a670de0f,59f372f,feature/pid-file-service-management,2025-09-07T14:58:01Z,michael,git,lua-api
|
||||
a670de0f,683d6e5,fix/validate-config-posix-regex,2025-09-07T16:00:48Z,michael,git,lua-api
|
||||
a670de0f,24bd94d,feature/systemd-hardening,2025-09-07T16:40:47Z,michael,git,lua-api
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
[Unit]
|
||||
Description=furt Multi-Tenant API Gateway
|
||||
Description=furt Multi-Tenant API Gateway (Security-Hardened)
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
|
|
@ -14,6 +14,20 @@ RestartSec=5
|
|||
StandardOutput=journal
|
||||
StandardError=journal
|
||||
|
||||
# === SECURITY HARDENING ===
|
||||
|
||||
# Filesystem Protection
|
||||
ProtectSystem=strict
|
||||
ReadWritePaths=/var/run/furt /var/log/furt
|
||||
ProtectHome=yes
|
||||
|
||||
# Process Hardening
|
||||
NoNewPrivileges=yes
|
||||
PrivateTmp=yes
|
||||
|
||||
# Network Restriction
|
||||
RestrictAddressFamilies=AF_INET
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue