Baoyuantop commented on issue #652:
URL:
https://github.com/apache/apisix-helm-chart/issues/652#issuecomment-4205354040
The error `unknown directive "client_header_buffer_size:"` indicates a
syntax issue in the NGINX configuration snippet. NGINX directives use
**spaces** as separators, not colons. For example:
```yaml
# ❌ Wrong (colon separator)
apisix:
nginx:
configurationSnippet:
httpSrv: |
client_header_buffer_size: 32k;
# ✅ Correct (space separator)
apisix:
nginx:
configurationSnippet:
httpSrv: |
client_header_buffer_size 32k;
```
The `configurationSnippet` values (values.yaml lines 454-466) are injected
directly into `nginx.conf`, so they must follow standard NGINX configuration
syntax.
Closing as this was a configuration syntax error. If you still have
questions, 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]