X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/44184f3bebe52f3d4ea567b8105f3631fcb003fe..a53d5ecd720cebfe1d81c077996cd2107ed80359:/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 5fc41114a6..b478286c9f 100644 --- a/doc/install/install-workbench-app.html.textile.liquid +++ b/doc/install/install-workbench-app.html.textile.liquid @@ -143,6 +143,7 @@ server { ssl_certificate_key /YOUR/PATH/TO/cert.key; index index.html index.htm index.php; + client_max_body_size 128m; location / { proxy_pass http://workbench; @@ -187,9 +188,8 @@ Next, we're going to use the rails console on the API server to
/var/www/arvados-api/current$ RAILS_ENV=production bundle exec rails console
 irb(main):001:0> Thread.current[:user] = User.all.select(&:identity_url).last
-irb(main):002:0> Thread.current[:user].is_admin = true
-irb(main):003:0> Thread.current[:user].update_attributes is_admin: true, is_active: true
-irb(main):004:0> User.where(is_admin: true).collect &:email
+irb(main):002:0> Thread.current[:user].update_attributes is_admin: true, is_active: true
+irb(main):003:0> User.where(is_admin: true).collect &:email
 => ["root", "your_address@example.com"]