feat(shlink): add some gui options (#1682)

This commit is contained in:
Stavros Kois 2022-01-10 19:12:08 +02:00 committed by GitHub
parent f61df34e69
commit 293c9aa598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -74,6 +74,18 @@ questions:
schema:
type: string
default: ""
- variable: ANONYMIZE_REMOTE_ADDR
label: "Anonymize Remote Address"
description: "Tells if IP addresses from visitors should be obfuscated before storing them in the database"
schema:
type: boolean
default: true
- variable: ENABLE_PERIODIC_VISIT_LOCATE
label: "Enable Periodic visit:locate"
description: "it schedules the visit:locate command to be run every hour inside the container using crontab"
schema:
type: boolean
default: true
- variable: IS_HTTPS_ENABLED
label: "Served over HTTPS"
description: "Tells if Shlink is served with https or not"

View File

@ -29,8 +29,10 @@ probes:
env:
DEFAULT_DOMAIN: ""
GEOLITE_LICENSE_KEY: ""
PORT: 10153
ANONYMIZE_REMOTE_ADDR: true
ENABLE_PERIODIC_VISIT_LOCATE: true
IS_HTTPS_ENABLED: true
PORT: 10153
DB_DRIVER: "postgres"
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"