Alias for Bugzilla
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
The main site is on /var/www/localhost/htdocs
and bugzilla is installed at /var/www/bugzilla/htdocs
There are several subdomains as well (don't know if that's pertinent).
Initially I set it up to use port 8666
NameVirtualHost servername:8666
<VirtualHost servername:8666>
ServerName "servername"
DocumentRoot "/var/www/bugzilla/htdocs"
<Directory "/var/www/bugzilla/htdocs">
AddHandler cgi-script cgi
Options +Indexes +ExecCGI +FollowSymLinks
DirectoryIndex index.cgi
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
</VirtualHost>
and that worked fine but I wanted to increase security for those logging in via insecure wifi links so I decided to move the main access to port 80 so that SSL could be used via 443 with the site certificate.
To test that I could use Alias I put a text file h.txt in /var/www/noo and added to httpd.conf:
Alias /noo /var/www/noo
<Directory /var/www/noo>
Order allow,deny
Allow from all
</Directory>
So for bugzilla I removed the virtual host entry and put the following in httpd.conf right after the ServerSignature entry along with the other Aliases:
Alias /bugzilla /var/wwww/bugzilla/htdocs
<Directory /var/www/bugzilla/htdocs>
AddHandler cgi-script cgi
Options +Indexes +ExecCGI +FollowSymLinks
DirectoryIndex index.cgi
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
There's also this further down in httpd.conf that was part of the previous port 8666 access that I left in place:
<Directory /var/www/bugzilla/>
Addhandler cgi-script .cgi
Options +Indexes +ExecCGI +FollowSymlinks
DirectoryIndex index.cgi
AllowOverride Limit
</Directory>
So what have I done wrong?
Thanks for your help.
Johnny
[Index of Archives]
[Open SSH Users]
[Linux ACPI]
[Linux Kernel]
[Linux Laptop]
[Kernel Newbies]
[Security]
[Netfilter]
[Bugtraq]
[Squid]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Samba]
[Video 4 Linux]
[Device Mapper]