-
Notifications
You must be signed in to change notification settings - Fork 175
Installing
Just download the code, unzip the files into a IIS website or Virtual Directory and hit run.
On Windows 2008 R2, you will have to set the right permissions on the folders. Follow these guides:
Remember: whether you use YourAppPoolName or NETWORK SERVICE account, make sure the account has "Full Control" on the App_Data folder inside the website.
On Linux (tested on Debian 7 stable), you will have to install the right apache package "libapache2-mod-mono" to have the .NET Frameworok implemented in your webserver. After you installed it via your package-manager like apt or aptitude, the /etc/apache2/apache2.conf needs to be edited. Insert the folowing lines in your config:
(In my case, the module was already loaded due the installation of the libapache2-mod-mono package. If this is not done, uncomment the following line)
#LoadModule mono_module /usr/lib/apache2/modules/mod_mono.so
<IfModule mod_mono.c>
MonoUnixSocket /tmp/.mod_mono_server
MonoServerPath /usr/lib/mono/4.5/mod-mono-server4.exe
MonoAutoApplication enabled
AddType application/x-asp-net .aspx .ashx .asmx .ascx .asax .config
DirectoryIndex index.aspx default.aspx
MonoApplicationsConfigDir /etc/mono-server4
MonoPath /usr/lib/mono/4.5:/usr/lib:/usr/lib/mono/4.5
</IfModule>
an then, restart your apache with /etc/init.d/apache2 restart.