Hints for setting up ML Server Pages on Apache 2 Contributed by Anoq from HardcoreProcessing.com * 2007-02-02 Apache2 configuration is in directory /etc/apache2/ * Available modules under mods-available/ Enabled modules are links under mods-enabled to mods-available * Available sites under sites-available/ Enabled sites are links under sites-enabled The site file to edit is here. Restarting apache: sudo /etc/init.d/apache2 restart MSP setup: Each website needs the directories: /cgi-bin and /cgi-bin/mscripts Each website needs a symlink: ln -s /usr/cgi-bin/mspcompile /cgi-bin/mspcompile MSP+Apache2 setup: Each website needs these lines in file /etc/apache2/sites-available/: Alias /cgi-bin /cgi-bin /cgi-bin> Options +ExecCGI SetHandler cgi-script In /etc/apache2/mods-available add the file msp.conf containing these 2 lines: AddType application/x-msp .msp Action application/x-msp /cgi-bin/mspcompile In /etc/apache2/mods-enabled add the file msp.load containing these 2 lines: AddType application/x-msp .msp Action application/x-msp /cgi-bin/mspcompile