Apache: how to restrict a virtual directory on a local network

On my Apache 2.x server, I have several virtual directories. I configured my router to access Apache from the Internet. I need one of these virtual servers (/ private) not to be accessible outside the local network. So what is given / personal, how do I configure Apache to only serve requests to / private from 192.168.4.x?

+4
source share
1 answer
<Directory /users/me/private> Order deny,allow Allow from 192.168.4 Deny from all </Directory> 
+10
source

All Articles