File: extra.conf.in

package info (click to toggle)
libapache2-mod-perl2 2.0.13-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,016 kB
  • sloc: perl: 97,771; ansic: 14,493; makefile: 51; sh: 18
file content (46 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download | duplicates (17)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#this file will be Include-d by @ServerRoot@/httpd.conf

#the subclass inside t/TEST added the authname and allowed_users variables
<IfModule mod_alias.c>
  Redirect /redirect http://@ServerName@/redirected/
</IfModule>

<IfModule mod_perl.c>

  <Location /TestMore__testpm>
    SetHandler perl-script
    <IfDefine APACHE2>
      PerlResponseHandler TestMore::testpm
    </IfDefine>
    <IfDefine APACHE1>
      PerlHandler TestMore::testpm
    </IfDefine>
  </Location>

  <Location /TestMore__testmorepm>
    SetHandler perl-script
    <IfDefine APACHE2>
      PerlResponseHandler TestMore::testmorepm
    </IfDefine>
    <IfDefine APACHE1>
      PerlHandler TestMore::testmorepm
    </IfDefine>
  </Location>
</IfModule>


<IfModule @CGI_MODULE@>
  ScriptAlias /cgi-bin/ "@ServerRoot@/cgi-bin/"

  <Directory "@ServerRoot@/cgi-bin/">
    AllowOverride None
    Options +ExecCGI
  </Directory>

  # t/next_available_port.t
  <IfModule mod_env.c>
    SetEnv NextAvailablePort @NextAvailablePort@
  </IfModule>

</IfModule>