Skip to content

Commit 2928332

Browse files
committed
use ssl for testing
1 parent 11ecbfc commit 2928332

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ pipeline {
3030
MULTIARCH = 'false'
3131
CI = 'true'
3232
CI_WEB = 'true'
33-
CI_PORT = '3000'
34-
CI_SSL = 'false'
33+
CI_PORT = '3001'
34+
CI_SSL = 'true'
3535
CI_DELAY = '100'
3636
CI_WEB_SCREENSHOT_DELAY = '30'
3737
CI_DOCKERENV = 'TZ=US/Pacific'

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ The application can be accessed at:
6161
* http://yourhost:3000/
6262
* https://yourhost:3001/
6363

64+
### Strict reverse proxies
65+
66+
This image uses a self-signed certificate by default. This naturally means the scheme is `https`.
67+
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).
68+
6469
**Modern GUI desktop apps may have compatibility issues with the latest Docker syscall restrictions. You can use Docker with the `--security-opt seccomp=unconfined` setting to allow these syscalls on hosts with older Kernels or libseccomp versions.**
6570

6671
### Security

jenkins-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ repo_vars:
1919
- MULTIARCH = 'false'
2020
- CI = 'true'
2121
- CI_WEB = 'true'
22-
- CI_PORT = '3000'
23-
- CI_SSL = 'false'
22+
- CI_PORT = '3001'
23+
- CI_SSL = 'true'
2424
- CI_DELAY = '100'
2525
- CI_WEB_SCREENSHOT_DELAY = '30'
2626
- CI_DOCKERENV = 'TZ=US/Pacific'

0 commit comments

Comments
 (0)