From 8f7f1103d085b84f56097339bc92a48988b94583 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Sat, 18 Jan 2025 11:03:09 +0000 Subject: [PATCH] Try to run the test suite with a SSL reverse proxy --- .gitlab-ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0bbed9bc..221295b7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,13 +16,18 @@ test: alias: memcache - name: docker.io/library/mysql:latest alias: mysql + - name: registry.git.autistici.org/pipelines/images/test/ssl-reverse-proxy:main + alias: sslproxy tags: [podman] variables: APACHE_PORT: 8080 TARGET_URL: "http://noblogs.org" - TARGET_ADDR: "127.0.0.1:8080" + TARGET_ADDR: "sslproxy:1443" MYSQL_DATABASE: noblogs MYSQL_ROOT_PASSWORD: rootpass + PROXY_PORT: 1443 + PROXY_DOMAIN: "noblogs.org" + PROXY_BACKEND_ADDR: "host.containers.internal:8080" before_script: - echo -n "$CI_JOB_TOKEN" | podman login -u gitlab-ci-token --password-stdin $CI_REGISTRY script: -- GitLab