I'm trying to give a range of IPs that can allow access to a local site and it always tells me that I have blocked access.
The file I use is:
link
And add the following:
<VirtualHost *:8080>
DocumentRoot c:/htdocs
ServerName localhost
</VirtualHost>
<VirtualHost *:8080>
DocumentRoot c:/proyectos/vista/index.php
ServerAlias dcmproyectos
ServerName proyectos
<Location />
Order deny,allow
Deny from all
Allow from 172.27.1
</Location>
</VirtualHost>
<Directory C:/proyectos>
Require all granted
</Directory>