feat: Disable access_logs by default
This commit is contained in:
parent
84dd8a6300
commit
838f18395c
2 changed files with 6 additions and 0 deletions
|
@ -10,6 +10,10 @@ data:
|
||||||
server {
|
server {
|
||||||
listen 8080;
|
listen 8080;
|
||||||
server_name _;
|
server_name _;
|
||||||
|
|
||||||
|
{{- if not .Values.webserver.config.accessLogEnabled }}
|
||||||
|
access_log off;
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
location /.well-known/ {
|
location /.well-known/ {
|
||||||
default_type application/json;
|
default_type application/json;
|
||||||
|
|
|
@ -30,6 +30,8 @@ webserver:
|
||||||
requests:
|
requests:
|
||||||
cpu: 10m
|
cpu: 10m
|
||||||
memory: 10Mi
|
memory: 10Mi
|
||||||
|
config:
|
||||||
|
accessLogEnabled: false
|
||||||
|
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
|
|
Loading…
Reference in a new issue