I am trying to allow access to a site from other computers who are logged into my router at 192.168.1.(anything).
I have made the changes to my httpd-vhosts.conf file like so:
<VirtualHost *:8081>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require 192.168.1
</Directory>
</VirtualHost>
However, when I restart Wamp I only get 2 of 3 services running. Apache will not start.
Is there something wrong with my syntax?
Do I need to make changes to the httpd.conf file as well?
Thanks
Wamp 3.1.4 64bit Windows 10
I have made the changes to my httpd-vhosts.conf file like so:
<VirtualHost *:8081>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require 192.168.1
</Directory>
</VirtualHost>
However, when I restart Wamp I only get 2 of 3 services running. Apache will not start.
Is there something wrong with my syntax?
Do I need to make changes to the httpd.conf file as well?
Thanks
Wamp 3.1.4 64bit Windows 10