以添加81端口为例
1.打开/etc/apache2 目录下 ports.conf文件
添加监听 Listen 81
2.打开/etc/apache2/sites-available 目录下的 000-default.conf 文件
添加 <VirtualHost *:81>内容 填写网站目录,域名日志目录等信息
<VirtualHost *:81>
ServerAdmin [email protected]
DocumentRoot "D:/UUHOO/Uuhoo/FrontEnd/UUHOO.CMS.IT.FE"
ServerName dummy-host2.example.com
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>