Skip to content

Instantly share code, notes, and snippets.

@hasen
Created May 5, 2016 07:09
Show Gist options
  • Save hasen/1ded931ff228add410a95a61967239e2 to your computer and use it in GitHub Desktop.
Save hasen/1ded931ff228add410a95a61967239e2 to your computer and use it in GitHub Desktop.
ubuntu v12.04で"AH01796: AuthType Digest configured without corresponding module"というエラーが出たので対応
-- <Directory /PATH/TO/PUBLIC>
-- AuthType Digest
-- AuthName "AUTH_NAME"
-- AuthUserFile "/PATH/TO/DIGEST_FILE"
-- Require valid-user
-- </Directory>
++ <Location />
++ AuthType Digest
++ AuthName "AUTH_NAME"
++ AuthUserFile "/PATH/TO/DIGEST_FILE"
++ Require valid-user
++ </Location>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment