From 9c90a8791532b7e6bc2d315a77613e55e1486417 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 25 Oct 2017 17:33:34 -0600 Subject: [PATCH] use /opt/gitea, not /srv/gitea --- README.md | 4 ++-- dist/etc/systemd/system/gitea.service | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e201e1f..0c645f3 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ Just follow these instructions: sudo adduser gitea --home /opt/gitea # Make some other potentially useful directories for that user/group -sudo mkdir -p /opt/gitea/ /var/log/gitea /srv/gitea -sudo chown -R gitea:gitea /opt/gitea/ /var/log/gitea /srv/gitea +sudo mkdir -p /opt/gitea/ /var/log/gitea +sudo chown -R gitea:gitea /opt/gitea/ /var/log/gitea # Download and install gitea sudo wget -O /opt/gitea/gitea https://dl.gitea.io/gitea/1.0.1/gitea-1.0.1-linux-amd64 diff --git a/dist/etc/systemd/system/gitea.service b/dist/etc/systemd/system/gitea.service index 01e121e..63f2596 100644 --- a/dist/etc/systemd/system/gitea.service +++ b/dist/etc/systemd/system/gitea.service @@ -1,7 +1,7 @@ # Pre-req # sudo adduser gitea --home /opt/gitea -# sudo mkdir -p /srv/gitea/ /opt/gitea/ /var/log/gitea -# sudo chown -R gitea:gitea /srv/gitea/ /opt/gitea/ /var/log/gitea +# sudo mkdir -p /opt/gitea/ /var/log/gitea +# sudo chown -R gitea:gitea /opt/gitea/ /var/log/gitea [Unit] Description=Gitea - Git with a cup of tea. A painless self-hosted Git service. @@ -40,14 +40,14 @@ PrivateDevices=true ProtectHome=true # Make /usr, /boot, /etc and possibly some more folders read-only. ProtectSystem=full -# ... except /srv/gitea because we want a place for the database +# ... except /opt/gitea because we want a place for the database # and /var/log/gitea because we want a place where logs can go. # This merely retains r/w access rights, it does not add any new. # Must still be writable on the host! -ReadWriteDirectories=/srv/gitea /opt/gitea /var/log/gitea +ReadWriteDirectories=/opt/gitea /var/log/gitea # Note: in v231 and above ReadWritePaths has been renamed to ReadWriteDirectories -; ReadWritePaths=/srv/gitea /opt/gitea /var/log/gitea +; ReadWritePaths=/opt/gitea /var/log/gitea # The following additional security directives only work with systemd v229 or later. # They further retrict privileges that can be gained by gitea.