X-Git-Url: https://git.arvados.org/arvados-k8s.git/blobdiff_plain/abea4a84dc14bc6e2a2a7e8b00e87a8a4e51d6f7..7f7c5c213af259bb660644949ce19a0d383e0bf2:/charts/arvados/config/workbench/database.yml diff --git a/charts/arvados/config/workbench/database.yml b/charts/arvados/config/workbench/database.yml deleted file mode 100644 index b2e59cf..0000000 --- a/charts/arvados/config/workbench/database.yml +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright (C) The Arvados Authors. All rights reserved. -# -# SPDX-License-Identifier: Apache-2.0 - -server { - listen 127.0.0.1:9000; - server_name localhost-workbench; - - root /var/www/arvados-workbench/current/public; - index index.html index.htm index.php; - - 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 { - server 127.0.0.1:9000 fail_timeout=10s; -} - -proxy_http_version 1.1; - -server { - listen 0.0.0.0:443 ssl; - server_name public-workbench; - - ssl on; - ssl_certificate /etc/ssl/certs/workbench.pem; - ssl_certificate_key /etc/ssl/private/workbench.key; - - 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 / { - proxy_pass http://workbench; - proxy_redirect off; - proxy_connect_timeout 90s; - proxy_read_timeout 300s; - - proxy_set_header X-Forwarded-Proto https; - proxy_set_header Host $http_host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - } -}