Bugzilla Apache 服务器配置
我已经在我的Centos5.5专用服务器上安装了Bugzilla。 我已经有一个使用 Apache 配置在该服务器上运行的网站
<VirtualHost *:80>
DocumentRoot /var/www/html/XXX
..
</VirtualHost>
,并且我在 Apache 上定义了一个新的虚拟主机,但是
<VirtualHost *:8000>
DocumentRoot /var/www/html/bugzilla
<Directory /var/www/html/bugzilla>
AddHandler cgi-script cgi pl
Options +Indexes +ExecCGI
DirectoryIndex index.cgi
AllowOverride Limit
</Directory>
</VirtualHost>
,无论如何我都无法访问 bugzilla.. 正确的方法是什么? 谢谢
I have installed Bugzilla on my dedicated server with Centos5.5.
I have already a website running on this server with Apache config
<VirtualHost *:80>
DocumentRoot /var/www/html/XXX
..
</VirtualHost>
and I have defined a new virtual host on Apache as
<VirtualHost *:8000>
DocumentRoot /var/www/html/bugzilla
<Directory /var/www/html/bugzilla>
AddHandler cgi-script cgi pl
Options +Indexes +ExecCGI
DirectoryIndex index.cgi
AllowOverride Limit
</Directory>
</VirtualHost>
However, I can't reach bugzilla anyway.. What is the right way to do that ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
防火墙是否有可能阻止 8000 端口?
Is there any chance that the firewall is blocking port 8000?