File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
charts/nginx-gateway-fabric Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 202202 "logging" : {
203203 "description" : " Logging defines logging related settings for NGINX." ,
204204 "properties" : {
205+ "accessLog" : {
206+ "description" : " AccessLog defines the access log settings." ,
207+ "properties" : {
208+ "disabled" : {
209+ "description" : " Disabled turns off access logging when set to true." ,
210+ "required" : [],
211+ "type" : " boolean"
212+ },
213+ "format" : {
214+ "description" : " Format specifies the custom log format string. If not specified, NGINX default 'combined' format is used." ,
215+ "required" : [],
216+ "type" : " string"
217+ }
218+ },
219+ "required" : [],
220+ "type" : " object"
221+ },
205222 "agentLevel" : {
206223 "enum" : [
207224 " debug" ,
Original file line number Diff line number Diff line change @@ -471,6 +471,16 @@ nginx:
471471 # - error
472472 # - panic
473473 # - fatal
474+ # accessLog:
475+ # type: object
476+ # description: AccessLog defines the access log settings.
477+ # properties:
478+ # disabled:
479+ # type: boolean
480+ # description: Disabled turns off access logging when set to true.
481+ # format:
482+ # type: string
483+ # description: Format specifies the custom log format string. If not specified, NGINX default 'combined' format is used.
474484 # nginxPlus:
475485 # type: object
476486 # description: NginxPlus specifies NGINX Plus additional settings.
You can’t perform that action at this time.
0 commit comments