我在我的Ubuntu 12.04和Chang网站上安装Apache 2 - 可以使用mysite配置
<VirtualHost *:80>
ServerAdmin sanjeet.jha@logicalindia.com
DocumentRoot /data-sml/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /data-sml/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
之后使用
启用mysitesudo a2ensite mysite
sudo service apache2 restart
但是显示
禁止
您无权访问此服务器上的/。
请帮助我。
答案 0 :(得分:0)
您可能对文件夹/data-sml/www
没有正确的权限。
尝试将其设置为755
。
命令sudo chmod 755 /data-sml/www