We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send an OPTIONS request to your application through code-server's proxy.
Should get a 200 or 204 back.
Gets blocked with a 401 if you have --auth=password, because OPTIONS requests do not include credentials.
--auth=password
OPTIONS
We should return a 200 or 204 for OPTIONS requests without checking auth.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Steps to Reproduce
Send an OPTIONS request to your application through code-server's proxy.
Expected
Should get a 200 or 204 back.
Actual
Gets blocked with a 401 if you have
--auth=password
, becauseOPTIONS
requests do not include credentials.Notes
We should return a 200 or 204 for OPTIONS requests without checking auth.
The text was updated successfully, but these errors were encountered: