feat(forgejo): new forgejo role
This commit is contained in:
parent
cf657bcea0
commit
0ce3b20d45
16 changed files with 1210 additions and 1 deletions
|
@ -0,0 +1,57 @@
|
|||
[Unit]
|
||||
Description=Forgejo Git service
|
||||
Documentation=https://forgejo.org
|
||||
Wants=network-online.target
|
||||
After=network-online.target
|
||||
|
||||
[Service]
|
||||
User={{ forgejo_user }}
|
||||
Group={{ forgejo_group }}
|
||||
Type=simple
|
||||
ExecStart={{ forgejo_binary_filepath }} web --config {{ forgejo_config_dir }}/app.ini
|
||||
Restart=on-failure
|
||||
RestartSec=3
|
||||
TimeoutStartSec=infinity
|
||||
TimeoutStopSec=infinity
|
||||
WorkingDirectory={{ forgejo_install_dir }}
|
||||
LimitNOFILE=524288:524288
|
||||
Environment=USER={{ forgejo_user }} HOME={{ forgejo_home_dir }} FORGEJO_WORK_DIR={{ forgejo_home_dir }}
|
||||
|
||||
# Security Hardening
|
||||
PrivateTmp=true
|
||||
CapabilityBoundingSet=CAP_SYS_RESOURCE
|
||||
{% if systemd_version | int >= 187 %}
|
||||
NoNewPrivileges=true
|
||||
SystemCallFilter=@system-service
|
||||
{% endif %}
|
||||
{%+ if systemd_version | int >= 209 %}SystemCallArchitectures=native{%- endif +%}
|
||||
{% if systemd_version | int >= 214 %}
|
||||
ProtectHome=true
|
||||
ProtectSystem=true
|
||||
{% endif %}
|
||||
{% if systemd_version | int >= 231 %}
|
||||
ReadOnlyPaths=/
|
||||
ReadWritePaths={{ forgejo_config_dir }} {{ forgejo_install_dir }} {{ forgejo_home_dir }}
|
||||
RestrictRealtime=true
|
||||
{% endif %}
|
||||
{% if systemd_version | int >= 232 %}
|
||||
ProtectControlGroups=true
|
||||
ProtectKernelModules=true
|
||||
ProtectKernelTunables=true
|
||||
RemoveIPC=true
|
||||
{% endif %}
|
||||
{% if systemd_version | int >= 233 %}
|
||||
MountAPIVFS=true
|
||||
RestrictNamespaces=ipc net mnt pid
|
||||
{% endif %}
|
||||
{%+ if systemd_version | int >= 235 %}LockPersonality=true{%- endif +%}
|
||||
{% if systemd_version | int >= 242 %}
|
||||
ProtectHostname=true
|
||||
RestrictSUIDSGID=true
|
||||
{% endif %}
|
||||
{%+ if systemd_version | int >= 244 %}ProtectKernelLogs=true{%- endif +%}
|
||||
{%+ if systemd_version | int >= 245 %}ProtectClock=true{%- endif +%}
|
||||
{%+ if systemd_version | int >= 247 %}ProtectProc=invisible{%- endif +%}
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Add table
Add a link
Reference in a new issue