質問

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

役に立ちましたか?

解決

Is there any chance that the firewall is blocking port 8000?

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top