【发布时间】:2016-11-21 00:41:25
【问题描述】:
我已经在 centos 7 上配置了 Bugzilla,它工作正常,只是无法获取 JS 和 CSS 文件。
我已按照here 的指示进行操作。
我已将 Apache 配置为托管 Bugzilla 安装,如下所示:
注意:我在端口 88 上运行了 httpd 服务。
#/etc/httpd/conf.d/bugzilla.conf
<VirtualHost *:88>
DocumentRoot /var/www/html/bugzilla/
</VirtualHost>
<Directory /var/www/html/bugzilla>
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
DirectoryIndex index.cgi
AllowOverride Limit FileInfo Indexes
</Directory>
当我从 chrome 浏览器访问 Bugzilla 时。我得到的视图如下图所示。
我已经交叉检查了 JS 和 CSS 文件和文件。我在这里缺少什么?
【问题讨论】:
标签: javascript apache httpd.conf bugzilla