From 7d9a20329c83c91b258c4778bbfa0a924799585a Mon Sep 17 00:00:00 2001 From: Andrey Zhavoronkov Date: Tue, 13 Jun 2023 16:46:06 +0300 Subject: [PATCH 1/2] fixed x-forwarded-proto header --- cvat/nginx.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/cvat/nginx.conf b/cvat/nginx.conf index 467b7b884e5..0a9e7c6d6ec 100644 --- a/cvat/nginx.conf +++ b/cvat/nginx.conf @@ -70,7 +70,6 @@ http { location / { proxy_set_header Host $http_host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; proxy_redirect off; From d6ad05583f4e90427ee4b18273f3d3a19362f6a0 Mon Sep 17 00:00:00 2001 From: Andrey Zhavoronkov Date: Wed, 14 Jun 2023 14:13:41 +0300 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cd6ab0ad81..d04be8be7bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Running serverless models for EXIF-rotated images () +- Uploading files when using https configuration () ### Security - TDB