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.

[Rails] HerokuデプロイしたアプリにBasic認証を導入する

Posted at

##はじめに
ローカル環境でBasic認証はできたけど、本番環境でのBasic認証はどうするのかを説明しています。
よろしくお願いします。

こちらの記事の続きだと思っていただけたらOKです。↓

なので上記の方法でBasic認証はローカル環境で実装済みというところから始めさせていただきます。

##Heroku上で環境変数を設定
ローカル環境と同じで、Herokuでも同じように環境変数を設定してあげます。

下記のコマンドを実行します。

ターミナル
% heroku config:set BASIC_AUTH_USER="admin"
% heroku config:set BASIC_AUTH_PASSWORD="2222"

設定できたらheroku config でちゃんと設定できているか確認できます。

確認できて問題なかったらHerokuへプッシュします。↓

ターミナル
% git add .
% git commit -m "Basic認証を導入"
% git push heroku master

これで本番環境でもBasic認証が導入できているはずです。

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?