Concrete CMS ログインページに IP 制限や BASIC 認証を追加する方法
Basic 認証
Apache な Concrete CMS (concrete5) サイトでログインページに Basic 認証を付ける方法です。
Nginx での方法はこちら
https://qiita.com/katzueno/items/b6b28d12c4105b4c133d
<Files "login">
AuthType Basic
AuthName "KatzCurry"
AuthUserFile /var/www/html/.htpasswd
Require valid-user
</Files>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} index\.php/login
RewriteRule ^index.php/(.*) $1 [R,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
concrete5 はドメインのルートに設置されている想定です。違う場合は、RewriteBase を書き換えてください。
/index.php/login を /login にリダイレクトさせて、
AuthUserFile /var/www/html/.htpasswd
を実際の .htpasswd ファイル保存先に書き換えてください。
RewriteCond %{REQUEST_URI} index\.php/login
の記述もドメインルート設置ではない場合は変更が必要です。
IP 制限
下記のように設定することで IP 制限が可能です。(未検証)
<Files "login">
<RequireAny>
Require ip xxx.xxx.xxx.xxx
Require ip xxx.xxx.xxx.xxx
</RequireAny>
</Files>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} index\.php/login
RewriteRule ^index.php/(.*) $1 [R,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
IP 制限といっても、AWS の ELB だったり、さくらのレンタルサーバーなどではプロキシサーバーがあるので特殊な設定が必要です。詳細は僕の別の Qiita の記事にて。
https://qiita.com/katzueno/items/4cf15117d228dbaf2448
Author And Source
この問題について(Concrete CMS ログインページに IP 制限や BASIC 認証を追加する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/katzueno/items/675865c2ee6d55755e87著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .