From 21dd4cc5672ae3ead8a513d3be926722ddb80879 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 11 Aug 2022 20:13:08 +0000 Subject: doc: drop ancient Apache and WEBrick examples Having old, unmaintained docs for other HTTP servers is likely harmful at this point. public-inbox-httpd is specifically designed to handle git repos on slow storage and stream giant mbox.gz files fairly to slow clients. --- examples/apache2_perl_old.conf | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 examples/apache2_perl_old.conf (limited to 'examples/apache2_perl_old.conf') diff --git a/examples/apache2_perl_old.conf b/examples/apache2_perl_old.conf deleted file mode 100644 index a6de2304..00000000 --- a/examples/apache2_perl_old.conf +++ /dev/null @@ -1,38 +0,0 @@ -# Example legacy Apache2 configuration using CGI + mod_perl2 -# Consider using Plack::Handler::Apache2 instead (see apache2_perl.conf) -# Adjust paths to your installation - -ServerName "public-inbox" -ServerRoot "/var/www/cgi-bin" -DocumentRoot "/var/www/cgi-bin" -ErrorLog "/tmp/public-inbox-error.log" -PidFile "/tmp/public-inbox.pid" -Listen 127.0.0.1:8080 -LoadModule perl_module /usr/lib/apache2/modules/mod_perl.so -LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so -LoadModule dir_module /usr/lib/apache2/modules/mod_dir.so -LoadModule mime_module /usr/lib/apache2/modules/mod_mime.so -TypesConfig "/dev/null" - -# PerlPassEnv PATH # this is implicit - - Options +ExecCGI - AddHandler perl-script .cgi - PerlResponseHandler ModPerl::Registry - PerlOptions +ParseHeaders - - # we use this hack to ensure "public-inbox.cgi" doesn't show up - # in any of our redirects: - PerlSetEnv NO_SCRIPT_NAME 1 - - # no need to set no rely on HOME if using this: - PerlSetEnv PI_CONFIG /home/pi/.public-inbox/config - - # our public-inbox.cgi requires PATH_INFO-based URLs with minimal - # use of query parameters - DirectoryIndex public-inbox.cgi - RewriteEngine On - RewriteCond %{REQUEST_FILENAME} !-f - RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule ^.* /public-inbox.cgi/$0 [L,PT] - -- cgit v1.2.3-24-ge0c7