From 4713599008bdb7d8c4bc5566048ddc8c4be3f8d2 Mon Sep 17 00:00:00 2001
From: Tor-Einar Skog <tor-einar.skog@nibio.no>
Date: Wed, 18 Sep 2019 09:13:44 +0200
Subject: [PATCH] First draft

---
 README.md | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 9a5aec5..80f3f0b 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,21 @@
 # VIPS Backend single server
 
-Scripts and documentation for configuring the VIPS backend systems (VIPSLogic, VIPSCoreManager and VIPSCore) on a single Linux server
\ No newline at end of file
+Scripts and documentation for configuring the VIPS backend systems (VIPSLogic, VIPSCoreManager and VIPSCore) on a single Linux server
+
+In order to clone this repository, issue this command:
+
+git clone https://gitlab.nibio.no/vips-setup/vips-backend-single-server.git
+
+If you get this error message:
+
+fatal: unable to access 'https://gitlab.nibio.no/vips-setup/vips-backend-single-server.git/': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none
+
+...then you need to update your SSL certificates, running this command (as ROOT):
+
+echo $(echo -n | openssl s_client -showcerts -connect gitlab.nibio.no:443 2>/dev/null  | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p') >> /etc/ssl/certs/ca-certificates.crt
+
+...and then run the git clone command again
+
+cd into the directory vips-backend-single-server/ and run the script:
+
+sudo ./vips-backend-single-server.sh
-- 
GitLab