X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/471ac065323e087f2f844d21d1c39929191eba71..608a1591840dfbeac3d5580c505b50bfface5929:/doc/install/install-controller.html.textile.liquid diff --git a/doc/install/install-controller.html.textile.liquid b/doc/install/install-controller.html.textile.liquid index 3e94b290d5..f78467f5be 100644 --- a/doc/install/install-controller.html.textile.liquid +++ b/doc/install/install-controller.html.textile.liquid @@ -92,12 +92,13 @@ Create the cluster configuration file @/etc/arvados/config.yml@ using the follow
Clusters:
   uuid_prefix:
-    NodeProfiles:
-      apiserver:
-        arvados-controller:
-          Listen: ":9004" # must match the "upstream controller" section of your Nginx config
+    Services:
+      Controller:
+        InternalURLs:
+          "http://localhost:9004": {} # must match the "upstream controller" section of your Nginx config
+      RailsAPI:
         arvados-api-server:
-          Listen: ":8000" # must match the "upstream api" section of your Nginx config
+          "http://localhost:8000": {} # must match the "upstream api" section of your Nginx config
     PostgreSQL:
       ConnectionPool: 128
       Connection:
@@ -178,3 +179,19 @@ Confirm the service is listening on its assigned port and responding to requests
 {"errors":["Forbidden"],"error_token":"1533044555+684b532c"}
 
+ +h3(#confirm-config). Confirm the public configuration is OK + +Confirm the publicly accessible configuration endpoint does not reveal any sensitive information (e.g., a secret that was mistakenly entered under the wrong configuration key). Use the jq program, if you have installed it, to make the JSON document easier to read. + + +
~$ curl http://0.0.0.0:9004/arvados/v1/config | jq .
+{
+  "API": {
+    "MaxItemsPerResponse": 1000,
+    "MaxRequestAmplification": 4,
+    "RequestTimeout": "5m"
+  },
+  ...
+
+