mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-12 10:04:14 +02:00
3e1b06acaa
The documentation was relying on a ScalityS3 container built for testing which wasn't very transparent. Instead, use the stock minio container and configure it in the documentation. Also, install certificates and CA so that TLS verification can be enabled.
26 lines
488 B
INI
26 lines
488 B
INI
[req]
|
|
default_bits = 4096
|
|
prompt = no
|
|
default_md = sha256
|
|
req_extensions = v3_req
|
|
distinguished_name = dn
|
|
|
|
[ dn ]
|
|
C=US
|
|
ST=All
|
|
L=All
|
|
O=pgBackRest
|
|
OU=Unit Testing Domain
|
|
CN = s3.us-east-1.amazonaws.com
|
|
|
|
[ v3_req ]
|
|
basicConstraints = CA:FALSE
|
|
keyUsage = nonRepudiation, digitalSignature, keyEncipherment
|
|
subjectAltName = @alt_names
|
|
|
|
[ alt_names ]
|
|
DNS.1 = s3.us-east-1.amazonaws.com
|
|
DNS.2 = *.s3.us-east-1.amazonaws.com
|
|
DNS.3 = s3.us-east-2.amazonaws.com
|
|
DNS.4 = *.s3.us-east-2.amazonaws.com
|