在 ubuntu 10.04 中配置 apache web 服务器

在 ubuntu 10.04 中配置 apache web 服务器

有什么方法可以更改在 ubuntu 中运行 apache web 服务器的端口号和本地主机名?

答案1

是的。检查一下Listenhttpd.conf 配置文件中的参数。

答案2

编辑文件:

/etc/apache2/apache2.conf

或以下位置的文件:

/etc/apache2/sites-enabled/

答案3

转到 /etc/apache2/sites-enabled/

<VirtualHost *:[whateverport]>
     ...
     ServerAlias [whatever]
     ...
</VirtualHost>

并在 /etc/apache2/ports.conf 中添加监听

相关内容