Parcourir la source

Update 'gogs/LXC-RockyLinux.md'

Updated/extended the documentation.
Michael Honkoop il y a 8 mois
Parent
commit
53375093ab
1 fichiers modifiés avec 22 ajouts et 3 suppressions
  1. 22 3
      gogs/LXC-RockyLinux.md

+ 22 - 3
gogs/LXC-RockyLinux.md

@@ -134,7 +134,26 @@ MariaDB [(none)]> \q
 ```
 
 ###### 
-Install Systemd Unitfile
+Install and activate Systemd Unitfile
 ```
-wget https://git.comsolve.nl/Comsolve/ProxMox-GuestSetups/master/gogs
-```
+wget -P /etc/systemd/system/ https://git.comsolve.nl/Comsolve/ProxMox-GuestSetups/raw/master/gogs/gogs.service
+systemctl daemon-reload
+```
+
+###### 
+Enable services to start at system-start
+```
+systemctl enable mariadb gogs
+```
+
+###### 
+Start GOGS service
+```
+systemctl start gogs
+```
+
+**Success ! you now have a running GOGS server on the server on port 3000 , please use a browser to finish the install on the ServerIP on port 3000**
+
+
+
+