feat(software/hosting-a-git-server): complete

This commit is contained in:
Barrett Ruth 2025-05-14 13:50:17 -04:00
parent 731ad1f1f8
commit 87e2851324
4 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,12 @@
[Unit]
Description=Git Server UI
After=network.target
[Service]
User=apache
WorkingDirectory=/srv/git/git-server-ui
ExecStart=/root/.local/bin/gunicorn --workers 3 --bind 0.0.0.0:8000 --chdir /srv/git wsgi:app
Restart=on-failure
[Install]
WantedBy=multi-user.target