Skip to content
Snippets Groups Projects
Commit a77654e7 authored by Markus Scheidgen's avatar Markus Scheidgen
Browse files

Added edit timeout to allow long running edits. [skip-ci]

parent 3aae002b
No related branches found
No related tags found
1 merge request!139V0.8.4
......@@ -101,6 +101,12 @@ data:
proxy_read_timeout {{ .Values.proxy.mirrorTimeout }};
proxy_pass http://{{ include "nomad.fullname" . }}-app:8000;
}
location ~ \/api\/repo\/edit {
proxy_buffering off;
proxy_read_timeout {{ .Values.proxy.editTimeout }};
proxy_pass http://{{ include "nomad.fullname" . }}-app:8000;
}
}
---
apiVersion: apps/v1
......
......@@ -98,6 +98,7 @@ proxy:
nodeIP:
timeout: 120
mirrorTimeout: 600
editTimeout: 1800
external:
host: "labdev-nomad.esc.rzg.mpg.de"
port: 80
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment