apache で Basic認証をかけるとInternal server error

Apache
スポンサーリンク

環境

  • RHEL9
  • apache2.4

事象

basic 認証かけたディレクトリにブラウザでアクセスしたらエラーが出るようになった。

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

原因

.htapasswd 置いてるフォルダのパーミッションが読み取り不可になっていたため。

  • .htapsswd の置き場所:/home/kuzu/.htpasswd
  • DocumentRoot:/var/www/html/

/home/kuzu のパーミッションが、700だった(デフォルト)。

apacheの実行ユーザーは、「apache」(デフォルト)。

対処

/home/kuzu のパーミッションを、755にした。

コメント