Martyn's blog for the Revelation Software community, sharing ideas, news, views and more. NOTE - Views and opinions expressed in this blog are personal and do not necessarily represent those of Revelation Software.
Friday, 20 March 2009
WebOI and Apache
Most of the current WebOI information talks about using IIS as the web server to run the technology on. Whilst having Lunch with Stefano from Fonoteca Nazionale Svizzera earlier this week, I learned that WebOI runs equally as well on Apache 2.x
In order to make it even easier for everyone, you may add that the only thing one needs to do, on a running Apache 2.2.x server, is to add the following lines to the "httpd.conf" file, then to restart the server. All the rest remains the same. Alias /weboi/ "C:/OI90 Eval/Inetsrv/" *Directory "C:/OI90 Eval/Inetsrv/"> Options Indexes MultiViews ExecCGI AllowOverride None Order allow,deny Allow from all */Directory> AddHandler cgi-script .exe
An update from Stefano:
ReplyDeleteIn order to make it even easier for everyone, you may add that the only thing one needs to do, on a running Apache 2.2.x server, is to add the following lines to the "httpd.conf" file, then to restart the server. All the rest remains the same.
Alias /weboi/ "C:/OI90 Eval/Inetsrv/"
*Directory "C:/OI90 Eval/Inetsrv/">
Options Indexes MultiViews ExecCGI
AllowOverride None
Order allow,deny
Allow from all
*/Directory>
AddHandler cgi-script .exe
PLEASE REPLACE THE * WITH < IN THE CODE ABOVE.