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 {
|
||||
listen 8080;
|
||||
server_name _;
|
||||
|
||||
{{- if not .Values.webserver.config.accessLogEnabled }}
|
||||
access_log off;
|
||||
{{- end }}
|
||||
|
||||
location /.well-known/ {
|
||||
default_type application/json;
|
||||
|
|
|
@ -30,6 +30,8 @@ webserver:
|
|||
requests:
|
||||
cpu: 10m
|
||||
memory: 10Mi
|
||||
config:
|
||||
accessLogEnabled: false
|
||||
|
||||
|
||||
imagePullSecrets: []
|
||||
|
|
Loading…
Reference in a new issue