我正在尝试学习如何配置Apache HTTP服务器(我没有经验)其他人在运行Ubuntu 8.04的VM中进行设置.
我知道服务器正在运行,因为我得到“< html>< body>< h1>它有效!< / h1>< / body>< / html>”当我去http://1.2.3.4/(其中1.2.3.4是VM的IP号码).
我在/ etc / apache2 /中找到了apache2.conf和httpd.conf(以及其他文件). httpd.conf是空的.
我尝试将DocumentRoot“/ home / username / temp”添加到/etc/apache2/httpd.conf中,并在/home/username/temp/index.html中添加一些简单的HTML.但是当我重装http://1.2.3.4/时,没有任何变化.
我是否需要重新启动httpd以使其接受对DocumentRoot的更改?
更新:我将/ etc / apache2 / sites-available / default中的“DocumentRoot / var / www /”更改为“DocumentRoot / home / username / temp”,但在运行sudo service apache2 restart之前,未提供下一个HTML.我可以告诉Apache重新加载配置(而不是重新启动)吗?
更新#2:从Karol Piczak评论他的回答得到了这个:sudo /etc/init.d/apache2 reload