Bug 5853 - koha-httpd file missing directory access
Summary: koha-httpd file missing directory access
Status: CLOSED INVALID
Alias: None
Product: Koha
Classification: Unclassified
Component: Installation and upgrade (command-line installer) (show other bugs)
Version: rel_3_2
Hardware: PC Linux
: P5 - low normal (vote)
Assignee: Galen Charlton
QA Contact: Bugs List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-03-11 02:14 UTC by Elliott Davis
Modified: 2012-10-26 00:41 UTC (History)
0 users

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Elliott Davis 2011-03-11 02:14:02 UTC
Every time I have installed Koha I have had to fix this.  After symlinking the koha-httpd.conf file to the apache/sites-enabled I have to add directory access for /usr/local/koha/opac/htdocs and /usr/local/koha/intranet/htdocs.  This is not in the install file for ubuntu and it seems like it is a bug.  

the complete fix for me was to add:

 <Directory "/usr/local/koha/opac/htdocs">
      Options Indexes FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
 </Directory>

to the Virtualhost on *:80

and to add:

 <Directory "/usr/local/koha/intranet/htdocs">
      Options Indexes FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
 </Directory>

to the virtual host on *:8080
Comment 1 Elliott Davis 2011-07-28 14:41:36 UTC
I submitted this when I first started working with Koha.  I was mistaken in my setup.