diff options
author | Valery Piashchynski <[email protected]> | 2021-01-21 20:15:10 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-01-21 20:15:10 +0300 |
commit | 4d60db85d1c0bfeddffe1de3e28d3464949c5f6d (patch) | |
tree | af1598be614ea234f063815e0f6e7ef84c66812e /tests/plugins/http/configs | |
parent | 788e7b8d01874208504a8b56159b4de378d4a0bc (diff) |
Allow https to listen on unix sockets
Diffstat (limited to 'tests/plugins/http/configs')
-rw-r--r-- | tests/plugins/http/configs/.rr-fcgi-reqUri.yaml | 2 | ||||
-rw-r--r-- | tests/plugins/http/configs/.rr-fcgi.yaml | 2 | ||||
-rw-r--r-- | tests/plugins/http/configs/.rr-init.yaml | 2 | ||||
-rw-r--r-- | tests/plugins/http/configs/.rr-ssl-push.yaml | 2 | ||||
-rw-r--r-- | tests/plugins/http/configs/.rr-ssl-redirect.yaml | 2 | ||||
-rw-r--r-- | tests/plugins/http/configs/.rr-ssl.yaml | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/tests/plugins/http/configs/.rr-fcgi-reqUri.yaml b/tests/plugins/http/configs/.rr-fcgi-reqUri.yaml index 99002777..05c3d40a 100644 --- a/tests/plugins/http/configs/.rr-fcgi-reqUri.yaml +++ b/tests/plugins/http/configs/.rr-fcgi-reqUri.yaml @@ -22,7 +22,7 @@ http: destroy_timeout: 60s ssl: - port: 8890 + address: :8890 redirect: false cert: fixtures/server.crt key: fixtures/server.key diff --git a/tests/plugins/http/configs/.rr-fcgi.yaml b/tests/plugins/http/configs/.rr-fcgi.yaml index 110b68f4..cfd4b79b 100644 --- a/tests/plugins/http/configs/.rr-fcgi.yaml +++ b/tests/plugins/http/configs/.rr-fcgi.yaml @@ -22,7 +22,7 @@ http: destroy_timeout: 60s ssl: - port: 8889 + address: :8889 redirect: false cert: fixtures/server.crt key: fixtures/server.key diff --git a/tests/plugins/http/configs/.rr-init.yaml b/tests/plugins/http/configs/.rr-init.yaml index b541e6de..01b90b44 100644 --- a/tests/plugins/http/configs/.rr-init.yaml +++ b/tests/plugins/http/configs/.rr-init.yaml @@ -26,7 +26,7 @@ http: destroy_timeout: 60s ssl: - port: 8892 + address: :8892 redirect: false cert: fixtures/server.crt key: fixtures/server.key diff --git a/tests/plugins/http/configs/.rr-ssl-push.yaml b/tests/plugins/http/configs/.rr-ssl-push.yaml index ae9fbc02..11a8ddd3 100644 --- a/tests/plugins/http/configs/.rr-ssl-push.yaml +++ b/tests/plugins/http/configs/.rr-ssl-push.yaml @@ -22,7 +22,7 @@ http: destroy_timeout: 60s ssl: - port: 8894 + address: :8894 redirect: true cert: fixtures/server.crt key: fixtures/server.key diff --git a/tests/plugins/http/configs/.rr-ssl-redirect.yaml b/tests/plugins/http/configs/.rr-ssl-redirect.yaml index d052e649..e49a73ed 100644 --- a/tests/plugins/http/configs/.rr-ssl-redirect.yaml +++ b/tests/plugins/http/configs/.rr-ssl-redirect.yaml @@ -22,7 +22,7 @@ http: destroy_timeout: 60s ssl: - port: 8895 + address: :8895 redirect: true cert: fixtures/server.crt key: fixtures/server.key diff --git a/tests/plugins/http/configs/.rr-ssl.yaml b/tests/plugins/http/configs/.rr-ssl.yaml index c3e45365..8a0f16b8 100644 --- a/tests/plugins/http/configs/.rr-ssl.yaml +++ b/tests/plugins/http/configs/.rr-ssl.yaml @@ -21,7 +21,7 @@ http: destroy_timeout: 60s ssl: - port: 8893 + address: :8893 redirect: false cert: fixtures/server.crt key: fixtures/server.key |