Php 无法访问observium web界面

Php 无法访问observium web界面,php,apache,ubuntu,ubuntu-14.04,observium,Php,Apache,Ubuntu,Ubuntu 14.04,Observium,前几天我在Ubuntu14.04虚拟机上安装了observium网络监控,我正在尝试使用web浏览器中的IP访问web界面。当我这样做时,我会指向/var/www目录中的标准apache“it works”页面,而不是observium index.php。但是,当我查看apache中的默认站点文件(/etc/apache2/sites available/default)时,它似乎被正确配置为: <VirtualHost *:80> ServerAdmin webmaste

前几天我在Ubuntu14.04虚拟机上安装了observium网络监控,我正在尝试使用web浏览器中的IP访问web界面。当我这样做时,我会指向/var/www目录中的标准apache“it works”页面,而不是observium index.php。但是,当我查看apache中的默认站点文件(
/etc/apache2/sites available/default
)时,它似乎被正确配置为:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    DocumentRoot /opt/observium/html
    <FilesMatch \.php$>
      SetHandler application/x-httpd-php
    </FilesMatch>
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /opt/observium/html/>
            DirectoryIndex index.php
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Require all granted
    </Directory>
    ErrorLog  ${APACHE_LOG_DIR}/error.log
    LogLevel warn
    CustomLog  ${APACHE_LOG_DIR}/access.log combined
    ServerSignature On
</VirtualHost>

服务器管理员webmaster@localhost
DocumentRoot/opt/observium/html
SetHandler应用程序/x-httpd-php
选项如下符号链接
不允许超限
DirectoryIndex.php
选项索引跟随符号链接多视图
允许超越所有
要求所有授权
ErrorLog${APACHE_LOG_DIR}/error.LOG
日志级别警告
CustomLog${APACHE\u LOG\u DIR}/access.LOG组合
服务器签名
在默认情况下,是否需要更改其他内容以重定向到observium目录?任何帮助都将不胜感激