Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4a2fb750a0 | ||
|
|
1d30d5afad | ||
|
|
ef466353b8 | ||
|
|
6e9c0f0442 | ||
|
|
ba65f0609a |
+3
-3
@@ -21,9 +21,9 @@ services:
|
||||
- "--certificatesResolvers.letsencrypt.acme.caServer=${CERTBOT_CA_RESOLVER}"
|
||||
- "${TRAEFIK_LEGACY_OPT:-}"
|
||||
- "--providers.file.watch=true"
|
||||
extra_hosts:
|
||||
- "staging:${STAGING_IP:-192.168.1.85}"
|
||||
- "webserver:${LEGACY_IP:-192.168.1.85}"
|
||||
# extra_hosts:
|
||||
# - "staging:${STAGING_IP:-192.168.1.85}"
|
||||
# - "webserver:${LEGACY_IP:-192.168.1.85}"
|
||||
ports:
|
||||
- "${PORT}:80"
|
||||
- "${HTTPS_PORT}:443"
|
||||
|
||||
@@ -7,8 +7,8 @@ DOMAIN = os.getenv("DOMAIN", "dev.kovagoadi.hu")
|
||||
PORT = os.getenv("PORT", "898")
|
||||
HTTPS_PORT = os.getenv("HTTPS_PORT", "446")
|
||||
|
||||
BASE_URL = f"http://127.0.0.1:{PORT}"
|
||||
HTTPS_BASE_URL = f"https://127.0.0.1:{HTTPS_PORT}"
|
||||
BASE_URL = f"http://192.168.1.85:{PORT}"
|
||||
HTTPS_BASE_URL = f"https://192.168.1.85:{HTTPS_PORT}"
|
||||
HOST_HEADER = f"test-whoami.{DOMAIN}"
|
||||
|
||||
@pytest.fixture(scope="session", autouse=True)
|
||||
@@ -122,7 +122,7 @@ def test_whoami_https_reachable():
|
||||
# We use curl because requests doesn't support --resolve easily to force SNI with custom IP
|
||||
cmd = [
|
||||
"curl", "-s", "-k", "--fail",
|
||||
"--resolve", f"{HOST_HEADER}:{HTTPS_PORT}:127.0.0.1",
|
||||
"--resolve", f"{HOST_HEADER}:{HTTPS_PORT}:192.168.1.85",
|
||||
f"https://{HOST_HEADER}:{HTTPS_PORT}"
|
||||
]
|
||||
try:
|
||||
@@ -159,7 +159,7 @@ def test_unknown_host_https_passthrough():
|
||||
# unknown.com should hit the catch-all SNI router
|
||||
cmd = [
|
||||
"curl", "-s", "-k", "-i", "--fail",
|
||||
"--resolve", f"tar.kovagoadi.hu:{HTTPS_PORT}:127.0.0.1",
|
||||
"--resolve", f"tar.kovagoadi.hu:{HTTPS_PORT}:192.168.1.85",
|
||||
f"https://tar.kovagoadi.hu:{HTTPS_PORT}/login"
|
||||
]
|
||||
try:
|
||||
@@ -193,7 +193,7 @@ def test_staging_https_routing():
|
||||
host = "test-whoami.staging.kovagoadi.hu"
|
||||
cmd = [
|
||||
"curl", "-s", "-k", "-i", "--fail",
|
||||
"--resolve", f"{host}:{HTTPS_PORT}:127.0.0.1",
|
||||
"--resolve", f"{host}:{HTTPS_PORT}:192.168.1.85",
|
||||
f"https://{host}:{HTTPS_PORT}"
|
||||
]
|
||||
try:
|
||||
@@ -209,7 +209,7 @@ def test_dev_https_routing():
|
||||
host = "test-whoami.dev.kovagoadi.hu"
|
||||
cmd = [
|
||||
"curl", "-s", "-k", "-i", "--fail",
|
||||
"--resolve", f"{host}:{HTTPS_PORT}:127.0.0.1",
|
||||
"--resolve", f"{host}:{HTTPS_PORT}:192.168.1.85",
|
||||
f"https://{host}:{HTTPS_PORT}"
|
||||
]
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user