X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=examples%2Fapache2_perl.conf;fp=examples%2Fapache2_perl.conf;h=0000000000000000000000000000000000000000;hp=a4721b5bd773c3e5f074960973a07acae805db17;hb=21dd4cc5672ae3ead8a513d3be926722ddb80879;hpb=cb4b682a91662d877a36e9fc52090852fae35fa2 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 - - - SetHandler perl-script - PerlResponseHandler Plack::Handler::Apache2 - PerlSetVar psgi_app /path/to/public-inbox.psgi - - -# Optional, preload the application in the parent like startup.pl - - use Plack::Handler::Apache2; - Plack::Handler::Apache2->preload("/path/to/public-inbox.psgi"); -