fix(oauth2): allow HTTP origins and fix trailing-slash mismatch for l…#128
fix(oauth2): allow HTTP origins and fix trailing-slash mismatch for l…#128
Conversation
…ocal dev - Strip trailing slash from normalizeUrl() results in isOriginAllowed() so origins with/without trailing slash match registered values - Conditionally skip HTTPS scheme enforcement when SSL.Enable is false, allowing HTTP clients in local dev - Fix SSL.Enable config key lookup (server.SSL_Enable → server.ssl_enable) to match the key name defined in config/server.php - Use getSchemeAndHttpHost() instead of hardcoded https:// prefix so the IDP base URL reflects the actual request scheme - Add fastcgi_buffers directives to nginx config to prevent buffer overflow
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (4)
✨ Finishing Touches🧪 Generate unit tests (beta)
Tip 💬 Introducing Slack Agent: The best way for teams to turn conversations into code.Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.
Built for teams:
One agent for your entire SDLC. Right inside Slack. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
📘 OpenAPI / Swagger preview ➡️ https://OpenStackweb.github.io/openstackid/openapi/pr-128/ This page is automatically updated on each push to this PR. |
| return array | ||
| ( | ||
| 'ssl_enabled' => env('SSL_ENABLED', false), | ||
| 'ssl_enable' => env('SSL_ENABLED', false), |
There was a problem hiding this comment.
this is duping "server.ssl_enabled"
please use old key
…ocal dev