summaryrefslogtreecommitdiff
blob: e5b5e3790183469dd465c4b62cccbca4befc0e31 (plain)
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
<IfDefine MONO>
  <IfModule !mod_mono.c>
    LoadModule mono_module extramodules/mod_mono.so
  </IfModule>

  <IfModule mod_mime.c>
    AddHandler mono .aspx .ashx .asmx .ascx .asax .config .ascx
  </IfModule>

  MonoUnixSocket /tmp/mod_mono_server
  
  # Uncomment this block to enable the xsp samples
  <IfModule mod_alias.c>
    Alias /mono "/usr/share/doc/xsp/test"
  </IfModule>
  MonoApplications "/mono:/usr/share/doc/xsp/test"
  <Directory /usr/share/doc/xsp/test>
    #SetHandler mono
    <IfModule mod_access.c>
        Order allow,deny
        Allow from all
    </IfModule>
  </Directory>
</IfDefine>