It’s like this, there is a domain name, www.abc.com
And now I want to configure two websites, two ports,
a default 80 www.abc .com Website 1
also want to configure an 8080www.abc.com Website 2.
That is, when visiting www.abc.com, visit website one
When visiting www.abc.com:8080, anti-counterfeiting website two .
Added port monitoring,
configured vhosts.conf. Then in the server, it can be accessed using 172.0.0.1:8080,
, but it cannot be accessed outside the server. Port 8080 has also been added to the outbound and inbound rules.
Do I need to set any other places?
代码如下;
<VirtualHost *:8080>
DocumentRoot "C:\inetpub\website\wxvr\wxvr"
ServerName www.abc.cn:8080
ServerAlias
<Directory "C:\inetpub\website\wxvr\wxvr">
Options FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>