From 062d46800e2baf83412f93781067becb1afb87a7 Mon Sep 17 00:00:00 2001 From: Joshua Ferraro Date: Sun, 30 Dec 2007 12:58:27 -0500 Subject: [PATCH] re-naming some files prior to release Signed-off-by: Joshua Ferraro --- README.txt => INSTALL | 0 README.debian => INSTALL.debian | 0 misc/info/LICENSE => LICENSE | 0 misc/info/Hints | 99 ----------------------------------------- 4 files changed, 99 deletions(-) rename README.txt => INSTALL (100%) rename README.debian => INSTALL.debian (100%) rename misc/info/LICENSE => LICENSE (100%) delete mode 100644 misc/info/Hints diff --git a/README.txt b/INSTALL similarity index 100% rename from README.txt rename to INSTALL diff --git a/README.debian b/INSTALL.debian similarity index 100% rename from README.debian rename to INSTALL.debian diff --git a/misc/info/LICENSE b/LICENSE similarity index 100% rename from misc/info/LICENSE rename to LICENSE diff --git a/misc/info/Hints b/misc/info/Hints deleted file mode 100644 index e697ce7314..0000000000 --- a/misc/info/Hints +++ /dev/null @@ -1,99 +0,0 @@ -Example /etc/koha.conf file entries - -database=Koha -hostname=localhost -user=Koha -pass=xxxxxx -includes=/usr/local/www/koha/htdocs/includes - -Please note the final line (includes=path) - The path entry can be -used as an alternative to manually editing the path in Output.pm file -(see INSTALL manual). - - --------------------------------------------------------------------------------- -Example apache httpd.conf entries: -Koha makes extensive use of Server Side Includes (SSI): - - -http://httpd.apache.org/docs/mod/mod_include.html - -If your page headers and footers do not show, then you may need to -re-configure your web server. - -Here is an example of entries suitable for Apache httpd.conf: - - - - ServerName koha.example.com - ServerPath /var/www/library - DocumentRoot /var/www/library/koha/html - Alias /images/ "/var/www/library/koha/html/images/" - ScriptAlias /cgi-bin/koha/ "/var/www/library/koha/cgi-bin/" - SetEnv PERL5LIB "/var/www/library/modules" - ErrorLog /var/log/httpd/koha-error_log - # - # ======== koha uses Server Side Includes ========= - # Normally here, use the same path as "DocRoot" above - - # - AllowOverride None - # - # First, you MUST enable +Includes or +IncludesNoExec - # - Options +Includes -FollowSymlinks -Indexes - # - # Second, you must also configure one of following: - # - # 1. server-parsed content (SSI) for files ending in ".html" - # - AddHandler server-parsed .html - # - # ...OR... (not "AND" !!!!)... - # - # 2. Allow SSI if executable bit set using "XBitHack" - # XBitHack on|off|full - # - # XBitHack on - any file that has the user-execute bit - # - set will be treated as a server-parsed html doc. - # - The "full" = "on" but, in addition, will test the - # - group-execute bit. If the group execute bit is set - # - then the Last-modified date of the returned file - # - is sent. If group-execute bit is not set, then no - # - last-modified date is sent. - # - Setting this bit allows clients and proxies to - # - cache the result of the request! - # - # For example, enable XBitHack (on) if you want to - # - include non-executable content in documents like: - # - # - # - # XBitHack on - # - # Remember - do not use XBitHack if using AddHandler! - - - - - ServerName opac.example.com - ServerPath /var/www/library - DocumentRoot /var/www/library/opac/html - Alias /images/ "/var/www/library/opac/html/images/" - ScriptAlias /cgi-bin/opac/ "/var/www/library/opac/cgi-bin/" - SetEnv PERL5LIB "/var/www/library/modules" - ErrorLog /var/log/httpd/opac-error_log - # - - AllowOverride None - Options +Includes -FollowSymLinks -Indexes - AddHandler server-parsed .html - - - - -Read your web server docs for more information about how Server Side -Includes work. - - - -- 2.11.0