Explorar el Código

Add unix socket help (#8377)

When using unix socket as listener (`HTTP_ADDR = /run/gitea/gitea.socket`) then it's required to have the folder `/run/gitea` with appropriate owner/group. Manual creation leads to vanishing after reboot. This directive enables Systemd to handle this.
tags/v1.10.0-rc1
Thomas McWork hace 4 años
padre
commit
bc5a479fef
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3
    0
      contrib/systemd/gitea.service

+ 3
- 0
contrib/systemd/gitea.service Ver fichero

@@ -20,6 +20,9 @@ Type=simple
User=git
Group=git
WorkingDirectory=/var/lib/gitea/
# If using unix socket: Tells Systemd to create /run/gitea folder to home gitea.sock
# Manual cration would vanish after reboot.
#RuntimeDirectory=gitea
ExecStart=/usr/local/bin/gitea web -c /etc/gitea/app.ini
Restart=always
Environment=USER=git HOME=/home/git GITEA_WORK_DIR=/var/lib/gitea

Cargando…
Cancelar
Guardar