X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/386c1a04bc3c9af3bf452df446583ee1c954db0b..8e26a9aeede967030e10cb93b01aad6bd519b484:/doc/install/install-workbench-app.html.textile.liquid diff --git a/doc/install/install-workbench-app.html.textile.liquid b/doc/install/install-workbench-app.html.textile.liquid index b33f28eb1f..7ee8db92f1 100644 --- a/doc/install/install-workbench-app.html.textile.liquid +++ b/doc/install/install-workbench-app.html.textile.liquid @@ -25,12 +25,12 @@ h2(#dependencies). Install dependencies h2(#configure). Update config.yml -Edit @/etc/arvados/config.yml@ to set the keys below. The full set of configuration options are in the "Workbench section of config.yml":{{site.baseurl}}/admin/config.html +Edit @config.yml@ to set the keys below. The full set of configuration options are in the "Workbench section of config.yml":{{site.baseurl}}/admin/config.html
    Services:
-      Workbench:
-        ExternalURL: "https://workbench.ClustedID.example.com"
+      Workbench1:
+        ExternalURL: "https://workbench.ClusterID.example.com"
     Workbench:
       SecretKeyBase: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
     Users:
@@ -52,14 +52,19 @@ You probably want to enable @Users.AutoAdminFirstUser@ .  The first user to log
 
 h2(#update-nginx). Update nginx configuration
 
-Use a text editor to create a new file @/etc/nginx/conf.d/arvados-workbench.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-workbench.conf@ with the following configuration.  Options that need attention are marked in red.
 
 
 
server {
-  listen       *:443 ssl;
+    listen       80;
+    server_name  workbench.ClusterID.example.com;
+    return 301   https://workbench.ClusterID.example.com$request_uri;
+}
+
+server {
+  listen       443 ssl;
   server_name  workbench.ClusterID.example.com;
 
-  ssl on;
   ssl_certificate     /YOUR/PATH/TO/cert.pem;
   ssl_certificate_key /YOUR/PATH/TO/cert.key;