Introduction
Administrators would like to restrict access to admin web UI only for intranet IP addresses or even only when accessed from their PC. Follow these steps, to restrict admin UI access for certain IP addresses.
Steps
-
Stop Apache Server.
-
Edit the following file, based on the OS on which FileCloud server is installed (adjust these paths for your environment).
Operating System
Typical Configuration File Location
Windows
C:\xampp\apache\conf\extra\httpd-filecloud.conf
Ubuntu
/etc/apache2/sites-enabled/000-default.conf
RHEL
/etc/httpd/conf/httpd.conf
-
Add the following lines to the configuration. In Windows, lines can be added to the end of the file. On Linux, lines needs to be added inside the VirtualHost configuration.
<Location /ui/admin2>Order deny,allowdeny from allallow from 192.168.allow from 33.201.24.69</Location> -
Restart apache, after making this change. Now admin UI will be accessible only from subnet 192.168.x.x and IP 33.201.24.69.
Old installations which use http(s)://<your filecloud address>/ui/admin to restrict access should change this to http(s)://<your filecloud address>/ui/admin2 and restart Apache for changes to take effect