source: ProjectBuilder/projects/hyperlinux/etc/httpd/conf.d/hyperlinux.conf@ 1778

Last change on this file since 1778 was 1778, checked in by Bruno Cornec, 11 years ago
  • New hyperlinux project for pre-installing servers
File size: 733 bytes
Line 
1##
2## hyperlinux httpd.conf -- Apache HTTP server configuration file
3## For the HyPerLinux project
4##
5
6NameVirtualHost 127.0.0.1
7
8<VirtualHost 127.0.0.1>
9
10ServerName hyperlinux
11Listen 8000
12User hyperlinux
13Group hyperlinux
14DocumentRoot "/home/hyperlinux/html"
15CustomLog /var/log/httpd/hyperlinux-access.log combined
16LogLevel warn
17Errorlog /var/log/httpd/hyperlinux-error.log
18
19<Directory "/home/hyperlinux/html">
20 Options Indexes Includes FollowSymLinks
21 AllowOverride None
22 Order allow,deny
23 Allow from all
24</Directory>
25
26ScriptAlias /cgi-bin/ "/home/hyperlinux/cgi-bin/"
27<Directory "/home/hyperlinux/cgi-bin">
28 AllowOverride None
29 Options ExecCGI
30 Order allow,deny
31 Allow from all
32</Directory>
33
34</VirtualHost>
Note: See TracBrowser for help on using the repository browser.