0
1

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.

Apacheのアクセス制限のちょっとしたメモ

Last updated at Posted at 2020-06-26

Apacheのアクセス制限のちょっとしたメモ

<Directory "/var/www/html/">
  SetEnvIf X-Forwarded-For "10\.0\.0\.1"    allow
  <RequireAny>
    Require env allow
  </RequireAny>
</Directory>

こうすることでロードバランサー通してても
アクセス元のIPアドレスが10.0.0.1からのアクセスは許可!
ってなるかと思いますがいろんなサイト見ていると

  SetEnvIf X-Forwarded-For "^10\.0\.0\.1"    allow

みたいな記述になっている箇所がありました。
ということは最初に書いたものだと
110.0.0.1と210.0.0.1もアクセスを許可していることに!?

致命的ってほどでもないのですが一応気を付けなくてはというメモでした

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?