about summary refs log tree commit homepage
path: root/examples/apache2_cgi.conf
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-04-30 22:04:44 +0000
committerEric Wong <e@80x24.org>2014-04-30 22:04:44 +0000
commitdae2c7b509308c052406a0d811e84e30db1bedd2 (patch)
tree7feae4a99fc57ce97361170e5aba2e6c50e04787 /examples/apache2_cgi.conf
parent2530c92abd468d9cba8d264237cdee42235d6842 (diff)
downloadpublic-inbox-dae2c7b509308c052406a0d811e84e30db1bedd2.tar.gz
Hopefully this is enough to get some folks started.
Diffstat (limited to 'examples/apache2_cgi.conf')
-rw-r--r--examples/apache2_cgi.conf5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/apache2_cgi.conf b/examples/apache2_cgi.conf
index 455e4780..775b7e67 100644
--- a/examples/apache2_cgi.conf
+++ b/examples/apache2_cgi.conf
@@ -1,12 +1,13 @@
 # Example Apache2 configuration using mod_cgi
-# adjust paths to your installation
+# If possible, use mod_perl (see apache2_perl.conf) instead of this.
+# 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 8080
+Listen 127.0.0.1:8080
 LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so
 LoadModule env_module /usr/lib/apache2/modules/mod_env.so
 LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so