Maj*_*ons 1 permissions apache2
我正在运行 Mint 17,并将我的/etc/apache2/sites-available/000-default.conf文件更改为以下内容:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /home/vg/www
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Run Code Online (Sandbox Code Playgroud)
$ ls -al在我的主目录级别的输出:
drwxr-xr-x 2 vg vg 4096 Aug 29 12:44 www
Run Code Online (Sandbox Code Playgroud)
在www目录中:
drwxr-xr-x 2 vg vg 4096 Aug 29 12:44 .
drwxr-xr-x 21 vg vg 4096 Aug 29 12:43 ..
-rwxrwxr-x 1 vg vg 22 Aug 29 12:44 info.php
Run Code Online (Sandbox Code Playgroud)
当我将 Firefox 指向 localhost/info.php 时,我得到 403,权限被拒绝。
info.php 仅包含:
<?php
phpinfo();
?>
Run Code Online (Sandbox Code Playgroud)
有任何想法吗?
在ubuntu apache中,默认配置是默认不允许随机虚拟站点root
编辑/etc/apache2/apache2.conf和以下几行(最好在默认目录块之后,以便您可以跟踪为站点根启用的位置)
<Directory /home/vg/www>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
Run Code Online (Sandbox Code Playgroud)
重新加载 apache,错误应该会消失,您应该会再次看到您的站点。
| 归档时间: |
|
| 查看次数: |
7549 次 |
| 最近记录: |