我是ROR的新手,目前正在使用Rails v4"#34;敏捷Web开发。
根据Iteration K1:使用Phusion Passenger和MySQL进行部署(第233页),我尝试使用下面的配置配置服务器
<VirtualHost *:80>
ServerName depot.yourhost.com
DocumentRoot /home/rubys/work/depot/public/
<Directory /home/rubys/work/depot/public>
AllowOverride all
Options -MultiViews
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
现在我可以看到服务器,但它只显示公共文件夹中的文件列表(如下所示)。我的公用文件夹没有任何默认的html文件。
Index of
Name Last modified Size Description
404.html 2015-01-02 22:52 1.3K
422.html 2015-01-02 22:52 1.3K
500.html 2015-01-02 22:52 1.2K
favicon.ico 2015-01-02 22:52 0
robots.txt 2015-01-02 22:52 202
Apache/2.4.7 (Ubuntu) Server at 192.168.0.195 Port 80
请你指点一下我做错了什么。
由于