diff --git a/ipeer/Chart.yaml b/ipeer/Chart.yaml index 195a626..33b7276 100644 --- a/ipeer/Chart.yaml +++ b/ipeer/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.8 +version: 0.1.9 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/ipeer/templates/nginx-configmap.yaml b/ipeer/templates/nginx-configmap.yaml index e2a35b2..707c221 100644 --- a/ipeer/templates/nginx-configmap.yaml +++ b/ipeer/templates/nginx-configmap.yaml @@ -34,6 +34,7 @@ data: location ~ \.php$ { include fastcgi_params; fastcgi_index index.php; + fastcgi_read_timeout {{ .Values.web.timeout }}; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_pass 127.0.0.1:9000; diff --git a/ipeer/values.yaml b/ipeer/values.yaml index 1a014ee..6d65949 100644 --- a/ipeer/values.yaml +++ b/ipeer/values.yaml @@ -17,7 +17,9 @@ web: image: repository: nginx pullPolicy: IfNotPresent - tag: "1.19-alpine" + tag: "1.24-alpine" + # set request timeout in seconds, some results need more time to calculate + timeout: "300" worker: enabled: false