1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-08-08 22:46:33 +02:00

Add description on ipv6 address (#1635)

* add docs on ipv6

* add tests for ipv6 address

* add tests for ipv6 address

* remove Print function for debugging

* Updated changelog
This commit is contained in:
t-katsumura
2022-05-23 18:17:29 +09:00
committed by GitHub
parent 743c344fdc
commit c6a98369a0
6 changed files with 486 additions and 67 deletions

View File

@ -54,7 +54,7 @@ var (
var _ = BeforeSuite(func() {
var err error
certBytes, keyBytes, err := util.GenerateCert()
certBytes, keyBytes, err := util.GenerateCert("127.0.0.1")
Expect(err).ToNot(HaveOccurred())
certOut := new(bytes.Buffer)
Expect(pem.Encode(certOut, &pem.Block{Type: "CERTIFICATE", Bytes: certBytes})).To(Succeed())