about summary refs log tree commit homepage
path: root/examples/apache2_perl.conf
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-08-11 20:13:08 +0000
committerEric Wong <e@80x24.org>2022-08-11 21:58:05 +0000
commit21dd4cc5672ae3ead8a513d3be926722ddb80879 (patch)
tree6e91229e556a95b1428dcf733be53bd4a4eb4861 /examples/apache2_perl.conf
parentcb4b682a91662d877a36e9fc52090852fae35fa2 (diff)
downloadpublic-inbox-21dd4cc5672ae3ead8a513d3be926722ddb80879.tar.gz
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.
Diffstat (limited to 'examples/apache2_perl.conf')
-rw-r--r--examples/apache2_perl.conf25
1 files changed, 0 insertions, 25 deletions
diff --git a/examples/apache2_perl.conf b/examples/apache2_perl.conf
deleted file mode 100644
index a4721b5b..00000000
--- a/examples/apache2_perl.conf
+++ /dev/null
@@ -1,25 +0,0 @@
-# Example Apache2 configuration using Plack::Handler::Apache2
-# Adjust paths to your installation
-
-ServerName "public-inbox"
-ServerRoot "/var/www"
-DocumentRoot "/var/www"
-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
-
-# no need to set no rely on HOME if using this:
-PerlSetEnv PI_CONFIG /home/pi/.public-inbox/config
-
-<Location />
-        SetHandler perl-script
-        PerlResponseHandler Plack::Handler::Apache2
-        PerlSetVar psgi_app /path/to/public-inbox.psgi
-</Location>
-
-# Optional, preload the application in the parent like startup.pl
-<Perl>
-        use Plack::Handler::Apache2;
-        Plack::Handler::Apache2->preload("/path/to/public-inbox.psgi");
-</Perl>