mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
794c577130
The Perl integration tests were migrated as faithfully as possible, but there was some cruft and a few unit tests that it did not make sense to migrate. Also remove all Perl code made obsolete by this migration. All unit, performance, and integration tests are now written in C but significant parts of the test harness remain to be migrated.
43 lines
697 B
INI
43 lines
697 B
INI
[req]
|
|
default_bits = 4096
|
|
prompt = no
|
|
default_md = sha256
|
|
req_extensions = v3_req
|
|
distinguished_name = dn
|
|
|
|
[ca]
|
|
default_ca=ca_pgbackrest
|
|
|
|
[ca_pgbackrest]
|
|
database=index.txt
|
|
unique_subject=no
|
|
default_md=sha256
|
|
|
|
[ dn ]
|
|
C=US
|
|
ST=All
|
|
L=All
|
|
O=pgBackRest
|
|
OU=Unit Testing Domain
|
|
CN = test.pgbackrest.org
|
|
|
|
[ v3_req ]
|
|
basicConstraints = CA:FALSE
|
|
keyUsage = nonRepudiation, digitalSignature, keyEncipherment
|
|
subjectAltName = @alt_names
|
|
|
|
[ alt_names ]
|
|
# Used in container unit tests
|
|
DNS.1 = test.pgbackrest.org
|
|
DNS.2 = *.test.pgbackrest.org
|
|
DNS.3 = *.test2.pgbackrest.org
|
|
|
|
# Used in non-container unit tests
|
|
DNS.4 = 127.0.0.1
|
|
IP.1 = 127.0.0.1
|
|
|
|
# Used in integration tests
|
|
DNS.5 = pg1
|
|
DNS.6 = pg2
|
|
DNS.7 = repo
|