From 87d748dbcddada6363d562ff283a4e10a9e7b8a3 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 24 Jun 2025 14:29:29 -0400 Subject: [PATCH] fix CI --- Jenkinsfile | 4 ++-- README.md | 5 +++++ jenkins-vars.yml | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 65851f2..317a88b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,8 +30,8 @@ pipeline { MULTIARCH = 'true' CI = 'true' CI_WEB = 'true' - CI_PORT = '3000' - CI_SSL = 'false' + CI_PORT = '3001' + CI_SSL = 'true' CI_DELAY = '120' CI_DOCKERENV = 'TZ=US/Pacific' CI_AUTH = 'user:password' diff --git a/README.md b/README.md index 9eef42d..efc6285 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,11 @@ services: capabilities: [compute,video,graphics,utility] ``` +### Strict reverse proxies + +This image uses a self-signed certificate by default. This naturally means the scheme is `https`. +If you are using a reverse proxy which validates certificates, you need to [disable this check for the container](https://docs.linuxserver.io/faq#strict-proxy). + ## Usage To help you get started creating a container from this image you can either use docker-compose or the docker cli. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 1d25798..f100265 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -19,8 +19,8 @@ repo_vars: - MULTIARCH = 'true' - CI = 'true' - CI_WEB = 'true' - - CI_PORT = '3000' - - CI_SSL = 'false' + - CI_PORT = '3001' + - CI_SSL = 'true' - CI_DELAY = '120' - CI_DOCKERENV = 'TZ=US/Pacific' - CI_AUTH = 'user:password'