diff --git a/storage_s3/README.md b/storage_s3/README.md index c885022..f6d7552 100644 --- a/storage_s3/README.md +++ b/storage_s3/README.md @@ -15,6 +15,10 @@ to local storage (but it would of course be possible to write a script for this) ## Changelog +### 3.1.2 + +- No technical changes, just fixing a mistake in the README change from 3.1.1 + ### 3.1.1 - No technical changes, just adding the missing README to PyPI and updating the nginx @@ -112,9 +116,6 @@ to the `server` block in your nginx config that is responsible for Indico. ```nginx location ~ ^/\.xsf/s3/(?https?)/(?[^/]+)/(?.+)$ { internal; - set $download_protocol $1; - set $download_host $2; - set $download_path $3; set $download_url $download_protocol://$download_host/$download_path; resolver YOUR_RESOLVER; proxy_set_header Host $download_host; diff --git a/storage_s3/setup.cfg b/storage_s3/setup.cfg index 94012b4..5f8cad5 100644 --- a/storage_s3/setup.cfg +++ b/storage_s3/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = indico-plugin-storage-s3 -version = 3.1.1 +version = 3.1.2 description = S3 storage backend for Indico long_description = file: README.md long_description_content_type = text/markdown; charset=UTF-8; variant=GFM