0
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?

More than 3 years have passed since last update.

ベーシック認証の付け方【初心者】

Last updated at Posted at 2021-03-15

【初心者向け】ベーシック認証作業忘れないように、備忘録_φ(・-・

-----------------

①.htaccessファイルを作成し、以下を追記(既にあれば追記)

AuthType Basic
AuthName "Please enter your ID and password"
AuthUserFile "フルパス\.htpasswd"
require valid-user
 //←改行一行入れる

②.htpasswdファイルを作成
▼ココでID/PWを作成(オススメ)
https://www.en-pc.jp/tech/htpasswd.php#htpasswd
※パスワードは8文字以内がオススメ(長すぎると通らない可能性大)
※暗号化方式を「MD5」に(それ以外は通らない可能性大)

③生成されたパスを.htpasswdファイルに追記

④シークレットウィンドウで確認する

◎リリース時は.htaccessから、追記した行を消すのを忘れない!!

-----------------

いつもベーシック認証の仕方忘れて鳥頭になるので、私的備忘録です。
今回は.htpasswd作成で詰みました。
回避方法は暗号化方式をMD5にしたらいけたけど、、パスワード5文字以内にしたのにCRYPTで通んなかったのなんで…??:rolling_eyes:

0
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
0
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?