ブラウザ経由でドメインにアクセスしたときにユーザーにユーザー名/パスワードの入力を求めるように、ApacheHttpを使用してAmazonサーバーを構成しようとしています。
これが私のapp.confファイル(httpd.confに含まれている)からのスニペットです
Alias / "/opt/bitnami/apache2/htdocs"
<Directory "/opt/bitnami/apache2/htdocs">
AuthType Basic
AuthName "No Trespassing"
AuthUserFile "/opt/bitnami/apache2/users"
Require valid-user
<IfVersion < 2.3 >
Order allow,deny
Allow from all
Satisfy all
</IfVersion>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
ErrorDocument 403 "Authentication error"
</Directory>
ログイン後、401の「認証エラー」ページにリダイレクトされます。ここに理由はありますか?私はおそらく他の.confファイルがいくつかの競合を引き起こすと考えています。
httpd.confには、次のものがあります。
WSGIScriptAlias / /opt/bitnami/apps/django/scripts/djangoApp.wsgi
<Directory '/opt/bitnami/apps/django/django_projects/djangoApp'>
Order allow,deny
Allow from all
Satisfy all
</Directory>
これらの各スニペットの最初の行がここで競合を引き起こし、ログインできなくなっている可能性がありますか?よくわかりませんが、どちらも同様のエイリアスを作成しているようです。
私が提供しなければならない詳細が他にある場合は、私に知らせてください。
ログのエラーは次のとおりです。
[Wed Jan 09 03:49:49 2013] [error] [client X.X.X.X] client denied by server configuration: /opt/bitnami/apache2/htdocsindex.html
[Wed Jan 09 03:49:49 2013] [error] [client X.X.X.X] client denied by server configuration: /opt/bitnami/apache2/htdocsfavicon.ico
[Wed Jan 09 03:50:28 2013] [error] [client X.X.X.X] client denied by server configuration: /opt/bitnami/apache2/htdocsindex.html
[Wed Jan 09 03:50:28 2013] [error] [client X.X.X.X] client denied by server configuration: /opt/bitnami/apache2/htdocsfavicon.ico
[Wed Jan 09 03:50:28 2013] [error] [client X.X.X.X] client denied by server configuration: /opt/bitnami/apache2/htdocsfavicon.ico