Files
openccb/nginx/proxy.conf
T
Nurfog e1f0d9ceb7 fix: Simplify nginx config - let Next.js handle API rewrites
- Remove complex location blocks from nginx
- Let Next.js rewrites handle API routing to CMS
- Keep only basic proxy configuration

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 14:12:12 -03:00

6 lines
136 B
Plaintext

# Proxy configuration for nginx
map $http_x_forwarded_proto $origin_proto {
default $http_x_forwarded_proto;
"" $scheme;
}