X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/115d8b18837272ee53144586454a684541318b84..faeaccc982ec3fc89263342e26e9bed4b0ee50ed:/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 7f39bf51d2..c25fdee1dd 100644 --- a/doc/install/install-arv-git-httpd.html.textile.liquid +++ b/doc/install/install-arv-git-httpd.html.textile.liquid @@ -212,10 +212,14 @@ Otherwise, create @/etc/cron.d/arvados-git-sync@ with the following content: h3. Configure the API server to advertise the correct SSH URLs -In your API server's @application.yml@ file, add the following entry: +Edit the cluster config at @/etc/arvados/config.yml@ and set @Services.GitSSH.ExternalURL@. Replace @uuid_prefix@ with your cluster id. -
git_repo_ssh_base: "git@git.uuid_prefix.your.domain:"
+
Clusters:
+  uuid_prefix:
+    Services:
+      GitSSH:
+        ExternalURL: git@git.uuid_prefix.your.domain:
 
@@ -267,21 +271,28 @@ The arvados-git-httpd package includes configuration files for systemd. If you' {% include 'notebox_end' %} -Create the configuration file @/etc/arvados/git-httpd/git-httpd.yml@. Run @arvados-git-httpd -h@ to learn more about configuration entries. +Edit the cluster config at @/etc/arvados/config.yml@ and set the following values. Replace @uuid_prefix@ with your cluster id. -
Client:
-  APIHost: uuid_prefix.your.domain
-  Insecure: false
-GitCommand: /var/lib/arvados/git/gitolite/src/gitolite-shell
-GitoliteHome: /var/lib/arvados/git
-Listen: :9001
-RepoRoot: /var/lib/arvados/git/repositories
+
Clusters:
+  uuid_prefix:
+    Services:
+      GitHTTP:
+        ExternalURL: https://git.uuid_prefix.your.domain/
+        InternalURLs:
+	  "http://localhost:9001": {}
+    Git:
+      GitCommand: /var/lib/arvados/git/gitolite/src/gitolite-shell
+      GitoliteHome: /var/lib/arvados/git
+      Repositories: /var/lib/arvados/git/repositories
 
+Make sure to include the trailing slash for @Services.GitHTTP.ExternalURL@. + Restart the systemd service to ensure the new configuration is used. +
~$ sudo systemctl restart arvados-git-httpd
 
@@ -320,17 +331,6 @@ server {
-h3. Configure the API server to advertise the correct HTTPS URLs - -In your API server's @application.yml@ file, add the following entry: - - -
git_repo_https_base: https://git.uuid_prefix.your.domain/
-
-
- -Make sure to include the trailing slash. - h2. Restart Nginx Restart Nginx to make the Nginx and API server configuration changes take effect. @@ -345,10 +345,10 @@ h2. Clone Arvados repository Here we create a repository object which will be used to set up a hosted clone of the arvados repository on this cluster. -
~$ prefix=`arv --format=uuid user current | cut -d- -f1`
-~$ echo "Site prefix is '$prefix'"
-~$ all_users_group_uuid="$prefix-j7d0g-fffffffffffffff"
-~$ repo_uuid=`arv --format=uuid repository create --repository "{\"owner_uuid\":\"$prefix-tpzed-000000000000000\", \"name\":\"arvados\"}"`
+
~$ uuid_prefix=`arv --format=uuid user current | cut -d- -f1`
+~$ echo "Site prefix is '$uuid_prefix'"
+~$ all_users_group_uuid="$uuid_prefix-j7d0g-fffffffffffffff"
+~$ repo_uuid=`arv --format=uuid repository create --repository "{\"owner_uuid\":\"$uuid_prefix-tpzed-000000000000000\", \"name\":\"arvados\"}"`
 ~$ echo "Arvados repository uuid is '$repo_uuid'"