Restricting Admin Console access by IP address
You can secure the Admin Console by allowing or denying specific IP addresses.
To specify who can access the Admin Console based on IP address:
-
Locate the
/usr/local/jive/etc/httpd/sites/default.conf
file. -
Allow or deny IP addresses by adding and modifying the following code:
<Location /admin>
Order Deny,Allow
Allow from <IP ADDRESS>
Allow from <IP ADDRESS>
Allow from <IP ADDRESS>
Allow from <IP ADDRESS>
Allow from <IP ADDRESS>
Deny from all
</Location>
Related