Baoyuantop commented on issue #667:
URL:
https://github.com/apache/apisix-helm-chart/issues/667#issuecomment-4205344081
You can configure a custom `proxy_cache` zone through
`apisix.nginx.configurationSnippet` in `values.yaml` (lines 454-466). Use the
`httpStart` section to add NGINX http-level directives:
```yaml
apisix:
nginx:
configurationSnippet:
httpStart: |
proxy_cache_path /tmp/disk_cache levels=1:2 keys_zone=my_cache:50m
inactive=1d max_size=1g;
```
Alternatively, you can use `apisix.fullCustomConfig` (values.yaml lines
335-340) to provide a complete custom `config.yaml` with your desired NGINX
configuration.
Closing as this is a usage question. If you still need help, please feel
free to reopen.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]