我正在使用本指南:
http://codingthis.com/platforms/linux/how-to-host-simple-content-with-amazon-elastic-cloud-computing-ec2/

我的/home/ec2-user 目录中有一个名为 public_html 的文件夹,其中包含一个 test.html 文件。

到目前为止我做了什么:

sudo yum -y install httpd php
sudo chkconfig httpd on
chmod 755 /home/ec2-user  (I HAVE NO IDEA WHAT THIS DOES)
sudo nano /etc/httpd/conf/httpd.conf
  (changed DocumentRoot to DocumentRoot /home/ec2-user/public_html)

TLDR:如何让它加载我的内容(我的 html 文件)而不是 apache 测试页面

额外的:

我为我的实例启用了一个带有规则的安全组:
ICMP Allow ALL
TCP Allow ALL
UDP Allow ALL
TCP port 80 (Http)

最佳答案

您的文档根不是 public_html 而不是 www 吗?那么为什么你把你的页面放在 www 目录下?

关于apache - Amazon EC2 如何托管我自己的内容?坚持有一个有效的测试 apache 页面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6721304/

10-16 00:16