Replies: 1 comment
-
Adding nginx configuration directly below apisix in config.yaml solved the issue. apisix: allow_admin: # http://nginx.org/en/docs/http/ngx_http_access_module.html#allow admin_key: enable_control: true nginx_config: Cheers!!! Avinash :) |
Beta Was this translation helpful? Give feedback.
-
Hello Guys,
I am getting upstream sent too big header while reading response header from upstream, client: 172.18.0.1, error while accessing the upstream via apisix gateway. ( created simple route and upstream[https] )
here is the related thread : #4162
Its very high level, as a beginner i am finding it difficult to make those changes in APISIX docker source and recompile them.
tried using custom nginx conf file, but its getting overwritten
apisix:
image: apache/apisix:2.13.1-alpine
restart: always
volumes:
- ./apisix_log:/usr/local/apisix/logs
- ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
- ./nginx_custom/nginx.conf:/usr/local/apisix/conf/nginx.conf
depends_on:
- etcd
ports:
- "9080:9080/tcp"
- "9091:9091/tcp"
- "9443:9443/tcp"
- "9092:9092/tcp"
networks:
apisix:
Please let me know anyone has fixed this.
Beta Was this translation helpful? Give feedback.
All reactions