8014: Add #configure anchors to API server and Workbench install guides.
[arvados.git] / doc / install / install-workbench-app.html.textile.liquid
index 22fc1557a8fae0336fff6f0f80e89e8f8d1b1262..f82a5b031d298989d3fd59c935198f2b4b962f51 100644 (file)
@@ -43,7 +43,7 @@ The Workbench server package uses configuration files that you write to @/etc/ar
 </code></pre>
 </notextile>
 
-h2. Configure Workbench
+h2(#configure). Configure Workbench
 
 Edit @/etc/arvados/workbench/application.yml@ following the instructions below.  The deployment script will consistently deploy this to Workbench's configuration directory.  Workbench reads both @application.yml@ and its own @config/application.defaults.yml@ file.  Values in @application.yml@ take precedence over the defaults that are defined in @config/application.defaults.yml@.  The @config/application.yml.example@ file is not read by Workbench and is provided for installation convenience only.
 
@@ -115,6 +115,10 @@ For best performance, we recommend you use Nginx as your Web server front-end, w
   passenger_enabled on;
   # If you're using RVM, uncomment the line below.
   #passenger_ruby /usr/local/rvm/wrappers/default/ruby;
+
+  # `client_max_body_size` should match the corresponding setting in
+  # the API server's Nginx configuration.
+  client_max_body_size 128m;
 }
 
 upstream workbench {
@@ -132,6 +136,8 @@ server {
   ssl_certificate_key <span class="userinput">/YOUR/PATH/TO/cert.key</span>;
 
   index  index.html index.htm index.php;
+  # `client_max_body_size` should match the corresponding setting in
+  # the API server's Nginx configuration.
   client_max_body_size 128m;
 
   location / {