summarylogtreecommitdiffstats
path: root/systemd.service
diff options
context:
space:
mode:
authorReid 'arrdem' McKenzie2023-01-05 00:49:42 -0700
committerReid 'arrdem' McKenzie2023-01-06 01:47:40 -0700
commitc3d176630644801da2c261cadfbf8eebdfd02f49 (patch)
treed5fc28bf85e4d20a96de7cacb8e39bfbff2a76ad /systemd.service
downloadaur-forgejo-bin.tar.gz
forgejo-bin @ 1.18-1
Modify the forgejo package to use the x86_64 binary distribution
Diffstat (limited to 'systemd.service')
-rw-r--r--systemd.service51
1 files changed, 51 insertions, 0 deletions
diff --git a/systemd.service b/systemd.service
new file mode 100644
index 000000000000..417bdcb75ef9
--- /dev/null
+++ b/systemd.service
@@ -0,0 +1,51 @@
+[Unit]
+Description=Forgejo
+After=syslog.target
+After=network.target
+After=mysqld.service
+After=postgresql.service
+After=memcached.service
+After=redis.service
+
+[Service]
+User=forgejo
+Group=forgejo
+Type=simple
+WorkingDirectory=~
+RuntimeDirectory=forgejo
+LogsDirectory=forgejo
+StateDirectory=forgejo
+Environment=USER=forgejo HOME=/var/lib/forgejo GITEA_WORK_DIR=/var/lib/forgejo GITEA_CUSTOM=/var/lib/forgejo
+ExecStart=/usr/bin/forgejo web -c /etc/forgejo/app.ini
+Restart=always
+RestartSec=2s
+ReadWritePaths=/etc/forgejo/app.ini
+AmbientCapabilities=
+CapabilityBoundingSet=
+LockPersonality=true
+#Required by commit search
+#MemoryDenyWriteExecute=true
+NoNewPrivileges=True
+#SecureBits=noroot-locked
+PrivateDevices=true
+PrivateTmp=true
+PrivateUsers=true
+ProtectClock=true
+ProtectControlGroups=true
+ProtectHome=true
+ProtectHostname=true
+ProtectKernelLogs=true
+ProtectKernelModules=true
+ProtectKernelTunables=true
+ProtectProc=invisible
+ProtectSystem=strict
+RestrictAddressFamilies=AF_INET AF_INET6 AF_NETLINK AF_UNIX
+RestrictNamespaces=true
+RestrictRealtime=true
+RestrictSUIDSGID=true
+SystemCallArchitectures=native
+SystemCallFilter=@system-service
+SystemCallErrorNumber=EPERM
+
+[Install]
+WantedBy=multi-user.target