我有一个安装了 Apache 的 AWS EC2 Linux VM,我需要配置 Apache,以便提供的默认 Index.html 文件来自附加的 EBS 卷(我已经将其存储在其中),而不是来自 Apache 中配置为 DocumentRoot 的默认 /var/www/html 目录。请帮忙。谢谢!
答案1
在大多数情况下,httpd.conf 位于 /etc/apache2/conf/httpd.conf 中。您需要更改 httpd.conf 文件中的 DocumentRoot 设置。更多信息请参见此处: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/3/html/Reference_Guide/s1-apache-config.html
你应该看到类似
<Directory "/var/www/html">
- 更改为
<Directory "/mountedEBS/desiredfolder">
为了应用更改,请不要忘记重新启动 Apache。