On Sun, 7 Aug 2005, Michael Crute wrote:

> Just a note for the future. Whenever you create a virual host that points to
> a directory you must create a directory container inside of the virual host
> container that sets up the permissions for the directory otherwise your will
> always get a 403 error.

Or, if all your vhosts roots will be under a certain folder, you can do
something like this (outside of any <VirtualHost> container):

<Directory /home/*/html>
    AllowOverride All
    Options MultiViews -Indexes Includes FollowSymLinks
    Order allow,deny
    Allow from all
</Directory>

<Directory /home/*/cgi-bin>
     Options +ExecCGI -Includes -Indexes
     SetHandler cgi-script
</Directory>

In my case, each site is under a folder under /home and consists of html
and cgi-bin folders.



>
> -Mike
>
> On 8/7/05, q-parser <[EMAIL PROTECTED]> wrote:
> >
> > Yes, that's it! Many thanks...I hope, there'll be no other problems.
> >
> > Michael Crute wrote:
> >
> > > Try this...
> > >
> > > <VirtualHost Gentoo-drak:85>
> > > ServerAdmin [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> > > DocumentRoot /usr/local/koha/opac/htdocs
> > > ServerName Gentoo-drak
> > >
> > > ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
> > > Redirect permanent index.html
> > > http://Gentoo-drak:85/cgi-bin/koha/opac-main.pl
> > > <http://gentoo-drak:85/cgi-bin/koha/opac-main.pl>
> > >
> > > ErrorLog /usr/local/koha/log/opac-error_log
> > > TransferLog /usr/local/koha/log/opac-access_log
> > >
> > > SetEnv PERL5LIB "/usr/local/koha/intranet/modules"
> > > SetEnv KOHA_CONF "/etc/koha.conf"
> > >
> > > <Directory "/usr/local/koha/opac/htdocs">
> > > Options Indexes FollowSymLinks
> > > AllowOverride None
> > > Order allow,deny
> > > Allow from all
> > > </Directory>
> > > </VirtualHost>
> > >
> > >
> > > On 8/7/05, *q-parser* <[EMAIL PROTECTED]
> > > <mailto:[EMAIL PROTECTED]>> wrote:
> > >
> > > Thanks for help, however, it didn't work. I'm still getting 403 - You
> > > don't have permission to access / on this server.
> > > I think it's not necessary to define virtual hosts in vhosts.conf
> > > as it
> > > is, to my knowledge, included to apache2.conf, so does my config. Any
> > > other suggestions for this? This is getting rather pushy.
> > >
> > > Paul Raison wrote:
> > >
> > > > To use virtual hosting with Apache2, you should them up in the
> > > > /etc/apache2/conf/vhosts/vhosts.conf file. Then you need to add
> > > this
> > > > directive within the Virtual Host block:-
> > > >
> > > > <directory /usr/local/koha/opac/cgi-bin/>
> > > > Order allow,deny
> > > > Allow from all
> > > > </directory>
> > > >
> > > > Repeat this section for /usr/local/koha/opac/htdocs/
> > > >
> > > > This should get it working.
> > > >
> > > > Paul
> > > >
> > > > q-parser wrote:
> > > >
> > > >> I've got a problem with setting up a virtual host for my "koha"
> > > >> perl-based application. It has its own httpd.conf which I include
> > > >> into apache2.conf using Include directive. It looks like this:
> > > >>
> > > >> #####
> > > >> Listen 85
> > > >>
> > > >> <VirtualHost Gentoo-drak:85>
> > > >> ServerAdmin [EMAIL PROTECTED]
> > > <mailto:[EMAIL PROTECTED]>
> > > >> DocumentRoot /usr/local/koha/opac/htdocs
> > > >> ServerName Gentoo-drak
> > > >> ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
> > > >> Redirect permanent index.html
> > > >> http://Gentoo-drak:85/cgi-bin/koha/opac-main.pl
> > > >> ErrorLog /usr/local/koha/log/opac-error_log
> > > >> TransferLog /usr/local/koha/log/opac-access_log
> > > >> SetEnv PERL5LIB "/usr/local/koha/intranet/modules"
> > > >> SetEnv KOHA_CONF "/etc/koha.conf"
> > > >>
> > > >> </VirtualHost>
> > > >> ####
> > > >> Gentoo-drak is a name of my machine. Ok, when I try to connect to
> > > >> localhost using port 85, I get this error message: You don't have
> > > >> permission to access / on this server. I don't understand because
> > > >> DocumentRoot dir "/usr/local/koha/opac/htdocs" has 775 permissions.
> > > >>
> > > >> Could anybody advise me how to get this to work or tip me out some
> > > >> tutorial on virtual hosting?
> > > >> Thanks
> > > >
> > > >
> > >
> > > --
> > > gentoo-user@gentoo.org <mailto:gentoo-user@gentoo.org> mailing list
> > >
> > >
> > >
> > >
> > > --
> > > ________________________________
> > > Michael E. Crute
> > > Software Developer
> > > SoftGroup Development Corporation
> > >
> > > "In a world without walls and fences, who needs windows and gates?"
> >
> >
> > --
> > gentoo-user@gentoo.org mailing list
> >
> >
>
>
>

-- 
heads down [Sun] adj.

 Concentrating, usually so heavily and
   for so long that everything outside the focus area is missed.  See
   also hack mode and larval stage, although this mode is
   hardly confined to fledgling hackers.

-- 
gentoo-user@gentoo.org mailing list

Reply via email to