X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/19332745d7d2d56b7583a930289e0559adac93da..64c516079154f73da3f2a33a957fa8ae8eb23749:/doc/install/install-arv-git-httpd.html.textile.liquid diff --git a/doc/install/install-arv-git-httpd.html.textile.liquid b/doc/install/install-arv-git-httpd.html.textile.liquid index 0427cae5be..3d70fc4de9 100644 --- a/doc/install/install-arv-git-httpd.html.textile.liquid +++ b/doc/install/install-arv-git-httpd.html.textile.liquid @@ -198,12 +198,12 @@ Create @/etc/cron.d/arvados-git-sync@ with the following content: h2(#update-config). Update config.yml -Edit the cluster config at @/etc/arvados/config.yml@ . +Edit the cluster config at @config.yml@ .
    Services:
       GitSSH:
-        ExternalURL: "git@git.ClusterID.example.com"
+        ExternalURL: "ssh://git@git.ClusterID.example.com"
       GitHTTP:
         ExternalURL: https://git.ClusterID.example.com/
         InternalURLs:
@@ -217,21 +217,20 @@ Edit the cluster config at @/etc/arvados/config.yml@ .
 
 h2(#update-nginx). Update nginx configuration
 
-Use a text editor to create a new file @/etc/nginx/conf.d/arvados-git.conf@ with the following configuration.  Options that need attention are marked with "TODO".
+Use a text editor to create a new file @/etc/nginx/conf.d/arvados-git.conf@ with the following configuration.  Options that need attention are marked in red.
 
 
 
upstream arvados-git-httpd {
   server                  127.0.0.1:9001;
 }
 server {
-  listen                  *:443 ssl;
+  listen                  443 ssl;
   server_name             git.ClusterID.example.com;
   proxy_connect_timeout   90s;
   proxy_read_timeout      300s;
 
-  ssl on;
-  ssl_certificate         /TODO/YOUR/PATH/TO/cert.pem;
-  ssl_certificate_key     /TODO/YOUR/PATH/TO/cert.key;
+  ssl_certificate         /YOUR/PATH/TO/cert.pem;
+  ssl_certificate_key     /YOUR/PATH/TO/cert.key;
 
   # The server needs to accept potentially large refpacks from push clients.
   client_max_body_size 128m;