diff options
author | 2005-02-17 05:56:24 +0000 | |
---|---|---|
committer | 2005-02-17 05:56:24 +0000 | |
commit | b6746fbe68873dcacdc64490b53572802c35d13d (patch) | |
tree | 3883809cda6cd2a5ef04a67a7ab63269ead50e82 /www-apache/mod_mono/files | |
parent | gnome-2.8.3 bugfix release (diff) | |
download | historical-b6746fbe68873dcacdc64490b53572802c35d13d.tar.gz historical-b6746fbe68873dcacdc64490b53572802c35d13d.tar.bz2 historical-b6746fbe68873dcacdc64490b53572802c35d13d.zip |
minor fixes
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'www-apache/mod_mono/files')
-rw-r--r-- | www-apache/mod_mono/files/1.0.5-r1/70_mod_mono.conf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www-apache/mod_mono/files/1.0.5-r1/70_mod_mono.conf b/www-apache/mod_mono/files/1.0.5-r1/70_mod_mono.conf new file mode 100644 index 000000000000..2b10ba4b6465 --- /dev/null +++ b/www-apache/mod_mono/files/1.0.5-r1/70_mod_mono.conf @@ -0,0 +1,40 @@ +# For more information on the Mono* directives, see the man page for +# mod_mono(8) + +<IfDefine MONO> + # Set this to False if you manage your ASP.Net server through + # /etc/init.d/mod-mono-server + MonoRunXSP False + + <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> + +### please also add "-D MONO_DEMO" in order to activate out-of-the-box mono demo +### + <IfDefine MONO_DEMO> + <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> + <IfModule mod_access.c> + Order allow,deny + Allow from all + </IfModule> + <IfModule mod_dir.c> + DirectoryIndex index.aspx + </IfModule> + </Directory> + </IfDefine> +### MONO_DEMO end. + +</IfDefine> + +# vim:syntax=apache:ts=4 |