File: httpd.in

package info (click to toggle)
spong 2.7.7-19
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,880 kB
  • ctags: 1,224
  • sloc: perl: 6,640; sh: 2,247; makefile: 237
file content (28 lines) | stat: -rw-r--r-- 545 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# NameVirtualHost @@SERVER@@

<VirtualHost @@VSERVER@@>
   ServerAdmin @@ADMIN@@
   ServerName @@VSERVER@@
   ServerAlias @@ALIASES@@
#   User nobody
#   Group nobody

   DocumentRoot @@WWWDIR@@
   ScriptAlias  /cgi/ @@CGIDIR@@
   DirectoryIndex /cgi/www-spong

   <Directory @@WWWDIR@@>
      Options Indexes FollowSymLinks
      <Limit GET POST>
        allow from all 
      </Limit>
   </Directory>

   <Directory @@CGIDIR@@/images>
      Options None
      <Limit GET>
        allow from all 
      </Limit>
   </Directory>

</VirtualHost>