Compare commits

..

5 Commits

Author SHA1 Message Date
0ed1b64975 Merge pull request 'chore(deps): update traefik:v3.6 docker digest to a9890c8' (#31) from renovate/traefik-v3.6 into main
All checks were successful
Remote Deployment Pipeline / Prepare Context (push) Successful in 2s
Remote Deployment Pipeline / Deploy (Staging) (push) Successful in 1m38s
Remote Deployment Pipeline / Deploy (Dev/Preview) (push) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (push) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (push) Successful in 1m9s
Reviewed-on: #31
2026-02-03 21:13:34 +01:00
d4f3832e7e chore(deps): update traefik:v3.6 docker digest to a9890c8
All checks were successful
Remote Deployment Pipeline / Prepare Context (pull_request) Successful in 4s
Remote Deployment Pipeline / Deploy (Staging) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Dev/Preview) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (pull_request) Successful in 14s
2026-01-30 03:29:02 +00:00
b448b47b70 Merge pull request 'chore(deps): update traefik:v3.6 docker digest to 03650d0' (#29) from renovate/traefik-v3.6 into main
All checks were successful
Remote Deployment Pipeline / Prepare Context (push) Successful in 3s
Remote Deployment Pipeline / Deploy (Staging) (push) Successful in 1m0s
Remote Deployment Pipeline / Deploy (Dev/Preview) (push) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (push) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (push) Successful in 1m20s
Reviewed-on: #29
2026-01-15 20:42:37 +01:00
539341dc65 chore(deps): update traefik:v3.6 docker digest to 03650d0
All checks were successful
Remote Deployment Pipeline / Prepare Context (pull_request) Successful in 4s
Remote Deployment Pipeline / Deploy (Staging) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Dev/Preview) (pull_request) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (pull_request) Successful in 13s
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
2026-01-15 03:28:58 +00:00
86e37ef551 Merge pull request 'Added route file back' (#28) from add-route-file-back into main
All checks were successful
Remote Deployment Pipeline / Prepare Context (push) Successful in 2s
Remote Deployment Pipeline / Deploy (Staging) (push) Successful in 49s
Remote Deployment Pipeline / Deploy (Dev/Preview) (push) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (push) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (push) Successful in 56s
Reviewed-on: #28
2025-12-25 21:22:07 +01:00
2 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
services:
traefik:
image: "traefik:v3.6@sha256:67622638cd88dbfcfba40159bc652ecf0aea0e032f8a3c7e3134ae7c037b9910"
image: "traefik:v3.6@sha256:a9890c898f379c1905ee5b28342f6b408dc863f08db2dab20e46c267d1ff463a"
restart: unless-stopped
security_opt:
- no-new-privileges:true

View File

@@ -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://192.168.1.85:{PORT}"
HTTPS_BASE_URL = f"https://192.168.1.85:{HTTPS_PORT}"
BASE_URL = f"http://127.0.0.1:{PORT}"
HTTPS_BASE_URL = f"https://127.0.0.1:{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}:192.168.1.85",
"--resolve", f"{HOST_HEADER}:{HTTPS_PORT}:127.0.0.1",
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}:192.168.1.85",
"--resolve", f"tar.kovagoadi.hu:{HTTPS_PORT}:127.0.0.1",
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}:192.168.1.85",
"--resolve", f"{host}:{HTTPS_PORT}:127.0.0.1",
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}:192.168.1.85",
"--resolve", f"{host}:{HTTPS_PORT}:127.0.0.1",
f"https://{host}:{HTTPS_PORT}"
]
try: