From eee02b6eba23cf65f86774eae65ed7ad2b73f2cb Mon Sep 17 00:00:00 2001 From: Alex Schroeder Date: Sat, 22 Mar 2003 15:23:28 +0000 Subject: [PATCH] moved to the wiki --- INSTALL | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 INSTALL diff --git a/INSTALL b/INSTALL deleted file mode 100644 index b41bc911..00000000 --- a/INSTALL +++ /dev/null @@ -1,43 +0,0 @@ -To install the script, you need to put it into your cgi-bin directory -and allow your web-server to execute it. How this is done, and where -your cgi-bin directory is, depends on your setup. - -== Apache 1.3 on a Debian GNU/Linux system == - -Copy the script wiki.pl into a directory of your choice. In this -example I will assume /home/alex/src/oddmuse/. - -Make it executable for everybody: - - chmod +x wiki.pl - -Make sure CGI scripts can be executed in this directory. In -/etc/apache/access.conf, add a directory as follows. The only -important option is the ExecCGI option. - - - AllowOverride None - Options ExecCGI FollowSymLinks - - -Now make sure that this directory is reachable by the web server. -Make sure the /etc/apache/srm.conf file has a line similar to the -following: - - ScriptAlias /my-cgi-bin/ /home/alex/src/oddmuse/ - -This will make the CGI directory registered in access.conf accessible -via the URL path /my-cgi-bin/. - -Restart the server. As root, run: - - /etc/init.d/apache restart - -Try it by visiting the following URL: - - http://localhost/my-cgi-bin/wiki.pl - ----- -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.1 or -any later version published by the Free Software Foundation.