]> Sergey Matveev's repositories - public-inbox.git/commitdiff
examples: various Apache-related doc updates
authorEric Wong <e@80x24.org>
Sun, 28 Feb 2016 23:03:52 +0000 (23:03 +0000)
committerEric Wong <e@80x24.org>
Sun, 28 Feb 2016 23:58:06 +0000 (23:58 +0000)
Plack::Handler::Apache2 exists and seems to work very well.

examples/README
examples/apache2_cgi.conf
examples/apache2_perl.conf
examples/apache2_perl_old.conf [new file with mode: 0644]

index 5113393779a97a280a3f56130195c0f83283c368..1244cb2c865951dc3675a1dc1a5bc23731e6cad7 100644 (file)
@@ -5,14 +5,13 @@ For all server admins
 ---------------------
 public-inbox-config - configuration file, this maps configured inboxes
 
-For Apache2 users without Plack
--------------------------------
-apache2_perl.conf - intended to be the basis of a production config
+For PSGI/Plack (HTTP) servers
+-----------------------------
+public-inbox.psgi - starting point for PSGI/Plack users in production and dev
 
-Web server configs for quick-and-dirty demos
---------------------------------------------
-apache2_cgi.conf - for Apache2 users who cannot install mod_perl
-cgi-webrick.rb - only for Rubyists who do not wish to install Plack or Apache
+For Apache2 users
+-----------------
+apache2_perl.conf - intended to be the basis of a production config
 
 Contact
 -------
index 775b7e677088cafa6e44f2f970f98a602697f3d8..5ec64d72f54f88474205cdb1b66d791b5659a04f 100644 (file)
@@ -1,5 +1,6 @@
-# Example Apache2 configuration using mod_cgi
-# If possible, use mod_perl (see apache2_perl.conf) instead of this.
+# Example Apache2 configuration using CGI mod_cgi
+# If possible, use mod_perl (see apache2_perl.conf) or
+# a standalone PSGI/Plack # server instead of this.
 # Adjust paths to your installation.
 
 ServerName "public-inbox"
index 6615eb9f5fa849a954167c73c0597c07f09778f8..a4721b5bd773c3e5f074960973a07acae805db17 100644 (file)
@@ -1,37 +1,25 @@
-# Example Apache2 configuration using mod_perl2
+# Example Apache2 configuration using Plack::Handler::Apache2
 # Adjust paths to your installation
 
 ServerName "public-inbox"
-ServerRoot "/var/www/cgi-bin"
-DocumentRoot "/var/www/cgi-bin"
+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
-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
-<Directory /var/www/cgi-bin>
-       Options +ExecCGI
-       AddHandler perl-script .cgi
-       PerlResponseHandler ModPerl::Registry
-       PerlOptions +ParseHeaders
+# no need to set no rely on HOME if using this:
+PerlSetEnv PI_CONFIG /home/pi/.public-inbox/config
 
-       # we use this hack to ensure "public-inbox.cgi" doesn't show up
-       # in any of our redirects:
-       PerlSetEnv NO_SCRIPT_NAME 1
+<Location />
+       SetHandler perl-script
+       PerlResponseHandler Plack::Handler::Apache2
+       PerlSetVar psgi_app /path/to/public-inbox.psgi
+</Location>
 
-       # 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]
-</Directory>
+# 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>
diff --git a/examples/apache2_perl_old.conf b/examples/apache2_perl_old.conf
new file mode 100644 (file)
index 0000000..a6de230
--- /dev/null
@@ -0,0 +1,38 @@
+# 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
+<Directory /var/www/cgi-bin>
+       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]
+</Directory>