1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Authorization Required、basicauthでのベーシック認証について

Last updated at Posted at 2024-11-27

前年のチームからの業務を受け継ぎ、djangoの開発を行っている際に、前チームのリポジトリをcloneしてrun serverしようとしたところ、以下のエラーが出ました。

Authorization Required

以下のコードによってあるテスト環境でベーシック認証を行うことができ、その設定が行われていましたが、私の環境にはbasicauthの設定ができておらずエラーが発生しました。

settings.py
MIDDLEWARE = [
    'basicauth.middleware.BasicAuthMiddleware',
]

あるテスト環境でベーシック認証を行うことができ、その設定が行われていましたが、私の環境にはbasicauthの設定ができておらずエラーが発生しました。
これを解決するため、自分のローカル環境のlocal_settings.py(このファイルは.gitignoreファイルに書いてあるのでgithub上にはあがらない)に以下のコードで解決しました。

local_settings.py
BASICAUTH_USERS={"ユーザー名": "パスワード"}

ただし、自分のローカル環境で作業する場合は、ベーシック認証が不必要なので、該当するコードを削除またはコメントアウトすれば解決します。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?