Amazon EC2如何在我的实例上托管PDF文件?

时间:2011-07-17 02:33:32

标签: apache amazon-ec2 amazon-web-services amazon web-hosting

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

我的/ home / ec2-user目录中有一个名为public_html的文件夹,带有index.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)

现在,当我访问我的www.mywebsite.com时,它会点击我的index.html文件。我试图将pdf文件放在我的public_html目录中,我试图访问www.mywebsite.com/pdffile.pdf并说它找不到页面。如何在我的ec2实例上托管我的pdf文件?

EXTRA:

我为我的实例启用了一个安全组,其中包含规则:

ICMP Allow ALL
TCP Allow ALL
UDP Allow ALL
TCP port 80 (Http) 

2 个答案:

答案 0 :(得分:0)

user848118回答了他/她自己的问题:网址区分大小写。

答案 1 :(得分:0)

假设您机器的IP是myipaddress 将PDF文件放在/ var / www中并浏览

http://myipaddress.com/file.pdf

适合我。