Skip to content

Commit

Permalink
Fix bench
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeASSIER committed Jan 16, 2024
1 parent c40d21a commit 285a3ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/bench.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ activate_listeners = true
[[listeners]]
protocol = "http"
# listening address
address = "127.0.0.1:8080"
address = "0.0.0.0:8080"

[[listeners]]
protocol = "https"
address = "127.0.0.1:8443"
address = "0.0.0.0:8443"
tls_versions = ["TLS_V12", "TLS_V13"]
cipher_list = [
# TLS 1.3 cipher suites
Expand All @@ -40,9 +40,9 @@ cipher_list = [
protocol = "http"
load_balancing = "ROUND_ROBIN"
frontends = [
{ address = "127.0.0.1:8443", hostname = "rsa-2048.sozu.io", certificate = "rsa-2048.pem", certificate_chain = "rsa-2048.pem", key = "rsa-2048.key"},
{ address = "127.0.0.1:8443", hostname = "rsa-4096.sozu.io", certificate = "rsa-4096.pem", certificate_chain = "rsa-4096.pem", key = "rsa-4096.key"},
{ address = "127.0.0.1:8443", hostname = "ecdsa.sozu.io", certificate = "ecdsa.pem", certificate_chain = "ecdsa.pem", key = "ecdsa.key"},
{ address = "0.0.0.0:8443", hostname = "rsa-2048.sozu.io", certificate = "rsa-2048.pem", certificate_chain = "rsa-2048.pem", key = "rsa-2048.key"},
{ address = "0.0.0.0:8443", hostname = "rsa-4096.sozu.io", certificate = "rsa-4096.pem", certificate_chain = "rsa-4096.pem", key = "rsa-4096.key"},
{ address = "0.0.0.0:8443", hostname = "ecdsa.sozu.io", certificate = "ecdsa.pem", certificate_chain = "ecdsa.pem", key = "ecdsa.key"},
]
backends = [
{ address = "0.0.0.0:4444"}
Expand Down

0 comments on commit 285a3ef

Please sign in to comment.