S3

This page documents the s3 server configuration.

For more information on network and the S3 interface see Connect.

Note

If a HTTPS (TLS) server Endpoint is used, see S3 security for more information on how to set up certificates.

Configuration file fields

This section is autogenerated from the Rule Schema file.


Configuration explained

This section contains additional information and examples.

Request-style

S3 supports two different request styles path and virtual hosted. The device supports both styles.

With the virtual hosted style, the subdomain is specific to the bucket, which makes it possible to use DNS to map a specific bucket to an IP address.

Warning

Some S3 servers may only support one of the two request formats.

Path-style http header example:

GET /[BUCKET_NAME]/[OBJECT_NAME] HTTP/1.1
Host: [DOMAIN]
...

Virtual hosted-style http header example:

GET /[OBJECT_NAME] HTTP/1.1
Host: [BUCKET_NAME].[DOMAIN]
...