-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Add comment on http_digest auth. #2170
New issue
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
Conversation
I just thought it would be usefull to see what keys are needed to get HTTP Digest Auth working.
-------------------------- | ||
|
||
To use HTTP-Digest authentication you need to provide a realm and a key: | ||
.. configuration-block:: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should put an empty line before this
add empty line
Added PHP and XML examples.
@wouterj: Thanks! Examples added. |
.. configuration-block:: | ||
|
||
.. code-block:: yaml | ||
# app/config/security.yml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put an empty line after .. code-block::
(same below)
Formatting fixes, added file comments.
Done :) |
realm: "secure-api" | ||
|
||
.. code-block:: xml | ||
<!-- app/config/security.xml --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You forgot a new line here 👊 ;)
👍 it's ready for merge (apart from that last change) |
fix newline
Add comment on http_digest auth.
Hi guys! Thanks for working together on this! I've merged this into master and then backported it to 2.0, since it applies to all branches (and unfortunately, it didn't patch cleanly directly to 2.0) - you can see the patch at sha: d1a79dc Thanks! |
I just thought it would be usefull to see what keys are needed to get HTTP Digest Auth working.