2015年3月20日金曜日

Apacheで特定のIPアドレスからのみリクエストを受け付ける場合

Allow From xxxx.xxxx.xxxx.xxxx を使う。

<Directory /APP>

    Order Allow,Deny

    Allow from 160.120.25.65
    Allow from 127.0.0.0/8

</Directory>

http://stackoverflow.com/questions/714332/allow-request-coming-from-specific-ip-only

0 件のコメント:

コメントを投稿