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
Block internet access to admin account?
Re: Block internet access to admin account?
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:
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>