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
Currently we use is_secure(host) method to decide whether or not to set the secure property on cookies.
is_secure(host)
secure
Instead we have another better option:
axum_server
layer
x-forwarded-proto
The text was updated successfully, but these errors were encountered:
We are only using non secure for localhost environment.
Sorry, something went wrong.
Nuhvi
No branches or pull requests
Currently we use
is_secure(host)
method to decide whether or not to set thesecure
property on cookies.Instead we have another better option:
axum_server
with rustls and certificates, and add alayer
to the https server to add Protocol extractor.x-forwarded-proto
header.The text was updated successfully, but these errors were encountered: