apache2
我使用以下命令在 Ubuntu 18.04 上安装:
apt install apache2
然后我编辑文件/etc/apache2/ports.conf
以侦听端口 8090:
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen 8090
<IfModule ssl_module>
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
然后禁用所有可用的虚拟主机:
a2dissite 000-default.conf
最后我重新启动了 Apache2。
但我仍然可以访问Apache2 Ubuntu 默认页面通过http://SERVER-IP:8090
:
所以我的问题是,默认的虚拟主机配置在哪里?
apache2.conf
是这里。