Block internet access to admin account?

Forum for questions and support relating to the 1.32.x releases only.
Post Reply
mn1247
Posts: 11
Joined: Sun Apr 05, 2015 12:47 pm

Block internet access to admin account?

Post by mn1247 »

Is there a way to set up ZM such that my admin account can only be accessed via my LAN, while the user account is still accessible via the internet (WAN)? For security reasons, I don't want to expose the admin account to the internet. I'm running ZM on an Ubuntu 18 server with Apache.

Doable?
Thanks
Eric
rockedge
Posts: 1173
Joined: Fri Apr 04, 2014 1:46 pm
Location: Connecticut,USA

Re: Block internet access to admin account?

Post by rockedge »

there is a way....you must configure Apache to do this. look up how to set up VirtualHost blocks in the Apache configuration and there are some methods to do exactly what you want and limit access specifically

Here is a simple example:

Code: Select all

<Directory /var/www/some-web-stuff/>
  Require host localhost
  Require ip 127.0.0.1
  Require ip 192.168
  Require ip 10
</Directory>
Post Reply