What's New
🐛 Bug Fixes
- Fixed Request URI Forwarding: Changed
proxy_pass http://owlery to proxy_pass http://owlery\$request_uri
- This ensures the full request path and query parameters are properly forwarded to the upstream server
- Fixes potential issues with malformed requests reaching Tomcat due to incomplete URI forwarding
🔧 Technical Changes
- Updated both port 80 and 8080 server blocks in NGINX configuration
- Request URI including path and query string is now correctly preserved when proxying
📋 Previous Release (1.1.0)
- Added port 8080 support alongside port 80
- Both ports handle requests identically with same caching behavior
- Updated documentation and Docker Compose examples
Usage
# Run with both ports (recommended)
docker run -d --name owl-cache -p 80:80 -p 8080:8080 virtualflybrain/owl_cache:1.1.1
# Or single port
docker run -d --name owl-cache -p 80:80 virtualflybrain/owl_cache:1.1.1