2

我今天早些时候刚刚升级到 Ubuntu 13.10。现在Apache2的版本是2.4.6。我删除了旧的站点配置文件并尝试创建一个新的。当我试图复制 default.conf 时,我发现格式已经发生了很大变化。这是新的 conf 文件的示例。和很多人一样,即使我将文件夹权限设置为 777,我也遇到了禁止问题。

      1 <VirtualHost *:80>
      2     # The ServerName directive sets the request scheme, hostname and port th    at
      3     # the server uses to identify itself. This is used when creating
      4     # redirection URLs. In the context of virtual hosts, the ServerName
      5     # specifies what hostname must appear in the request's Host: header to
      6     # match this virtual host. For the default virtual host (this file) this
      7     # value is not decisive as it is used as a last resort host regardless.
      8     # However, you must set it for any further virtual host explicitly.
      9     ServerName www.janicezhang.me
     10 
     11     ServerAdmin webmaster@localhost
     12     DocumentRoot /home/yifan/www/janice
     13 
     14     # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
     15     # error, crit, alert, emerg.
     16     # It is also possible to configure the loglevel for particular
     17     # modules, e.g.
     18     #LogLevel info ssl:warn
     19 
     20     ErrorLog ${APACHE_LOG_DIR}/error.log
     21     CustomLog ${APACHE_LOG_DIR}/access.log combined
     22 
     23     # For most configuration files from conf-available/, which are
     24     # enabled or disabled at a global level, it is possible to
     25     # include a line for only one particular virtual host. For example the
     26     # following line enables the CGI configuration for this host only
     27     # after it has been globally disabled with "a2disconf".
     28     #Include conf-available/serve-cgi-bin.conf
     29 </VirtualHost>

我只是想知道是否有一些教程可以在 ubuntu 13.10 中为 apache 2.4.6 设置虚拟主机。谢谢。

4

1 回答 1

3

好的,我自己解决了这个问题。需要做两件事。首先,在您的站点配置文件中添加如下行:

<Directory "/home/yifan/www/janice">
    Options ExecCGI
    AllowOverride all
    Require all granted
</Directory>

在此之后,我可以在没有禁止错误的情况下浏览该站点。但是,php 文件显示为纯文本。我检查了文件夹 mods-enabled 并发现 php5 不在这里。我不知道为什么 php5 在升级过程中会丢失。所以只需重新安装它

sudo apt-get install libapache2-mod-php5

然后,该站点被恢复。

于 2013-11-01T15:12:28.643 回答