Jump to content

Restrict IP on Apache server


kaushikgotecha

Recommended Posts

In your httpd.conf file you will want to add the following to your <Directory></Directory> container

Order Deny,Allow
Deny from xxx.xxx.xxx.xxx
Allow from all

For example:

<VirtualHost xxx.xxx.xxx.xxx>
ServerName mywebsite.com
<Directory /path/to/my/files>
Order Deny,Allow
Deny from IP number I want to block
Allow from all
</Directory>
</VirtualHost>


Don't forget to restart your webserver after making your changes.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.