This commit is contained in:
Jonas Forsberg 2024-10-27 10:58:44 +01:00
parent f8471dcc90
commit e824518a4a
2 changed files with 17 additions and 5 deletions

View File

@ -15,4 +15,4 @@ maintainers:
dependencies: dependencies:
- name: lib - name: lib
repository: "oci://repo.rre.nu/helm" repository: "oci://repo.rre.nu/helm"
version: 1.0.0 version: 1.0.2

View File

@ -5,7 +5,7 @@ gotify:
keepaliveperiodseconds: 0 # 0 = use Go default (15s); -1 = disable keepalive; set the interval in which keepalive packets will be sent. Only change this value if you know what you are doing. keepaliveperiodseconds: 0 # 0 = use Go default (15s); -1 = disable keepalive; set the interval in which keepalive packets will be sent. Only change this value if you know what you are doing.
listenaddr: "" # the address to bind on, leave empty to bind on all addresses. Prefix with "unix:" to create a unix socket. Example: "unix:/tmp/gotify.sock". listenaddr: "" # the address to bind on, leave empty to bind on all addresses. Prefix with "unix:" to create a unix socket. Example: "unix:/tmp/gotify.sock".
port: 80 # the port the HTTP server will listen on port: 80 # the port the HTTP server will listen on
ssl: ssl:
enabled: false # if https should be enabled enabled: false # if https should be enabled
redirecttohttps: true # redirect to https if site is accessed by http redirecttohttps: true # redirect to https if site is accessed by http
@ -26,7 +26,7 @@ gotify:
# - 127.0.0.1 # - 127.0.0.1
# - 192.168.178.0/24 # - 192.168.178.0/24
# - ::1 # - ::1
cors: # Sets cors headers only when needed and provides support for multiple allowed origins. Overrides Access-Control-* Headers in response headers. cors: # Sets cors headers only when needed and provides support for multiple allowed origins. Overrides Access-Control-* Headers in response headers.
alloworigins: alloworigins:
# - ".+.example.com" # - ".+.example.com"
@ -37,7 +37,7 @@ gotify:
allowheaders: allowheaders:
# - "Authorization" # - "Authorization"
# - "content-type" # - "content-type"
stream: stream:
pingperiodseconds: 45 # the interval in which websocket pings will be sent. Only change this value if you know what you are doing. pingperiodseconds: 45 # the interval in which websocket pings will be sent. Only change this value if you know what you are doing.
allowedorigins: # allowed origins for websocket connections (same origin is always allowed, default only same origin) allowedorigins: # allowed origins for websocket connections (same origin is always allowed, default only same origin)
@ -56,11 +56,13 @@ gotify:
service: # services that should be created service: # services that should be created
main: main:
enabled: false enabled: true
type: ClusterIP type: ClusterIP
annotations: {} annotations: {}
labels: {} labels: {}
ports: ports:
http:
port: 80
ingress: ingress:
enabled: false enabled: false
@ -77,3 +79,13 @@ ingress:
paths: paths:
- path: / - path: /
pathType: ImplementationSpecific pathType: ImplementationSpecific
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http