We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a5ca3d commit 02e9a87Copy full SHA for 02e9a87
README.md
@@ -20,7 +20,9 @@ Implements proxying of authenticated requests to S3.
20
21
# This is an example that does not use the server root for the proxy root
22
location /myfiles {
23
- proxy_pass http://your_s3_bucket.s3.amazonaws.com/;
+
24
+ rewrite /myfiles/(.*) /$1 break;
25
+ proxy_pass http://your_s3_bucket.s3.amazonaws.com/$1;
26
27
aws_access_key your_aws_access_key;
28
aws_secret_key the_secret_associated_with_the_above_access_key;
0 commit comments