aboutsummaryrefslogtreecommitdiffstats
path: root/main/pound/pound.cfg
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-03-04 12:17:56 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-03-04 12:17:56 +0000
commitf5f361f3ed635a95edf3b7a461549e91e2a6044c (patch)
tree0ae6bf3ebf74a2f26c774f357074e887633d40f0 /main/pound/pound.cfg
parentd953a0ff60a3919eb863503f7bcbd02df759b37d (diff)
downloadaports-f5f361f3ed635a95edf3b7a461549e91e2a6044c.tar.bz2
aports-f5f361f3ed635a95edf3b7a461549e91e2a6044c.tar.xz
main/pound: moved from testing
Diffstat (limited to 'main/pound/pound.cfg')
-rw-r--r--main/pound/pound.cfg54
1 files changed, 54 insertions, 0 deletions
diff --git a/main/pound/pound.cfg b/main/pound/pound.cfg
new file mode 100644
index 0000000000..664ea53c9e
--- /dev/null
+++ b/main/pound/pound.cfg
@@ -0,0 +1,54 @@
+## Minimal sample pound.cfg
+##
+## see pound(8) for details
+
+
+######################################################################
+## global options:
+
+User "nobody"
+Group "nobody"
+#RootJail /chroot/pound
+
+## Logging: (goes to syslog by default)
+## 0 no logging
+## 1 normal
+## 2 extended
+## 3 Apache-style (common log format)
+LogLevel 1
+
+## check backend every X secs:
+Alive 30
+
+## use hardware-accelleration card supported by openssl(1):
+#SSLEngine <hw>
+
+
+######################################################################
+## listen, redirect and ... to:
+
+## redirect all requests on port 8888 ("ListenHTTP") to the local webserver see "UrlGroup" below):
+ListenHTTP
+Address 127.0.0.1
+Port 8888
+
+## allow PUT and DELETE also (by default only GET, POST and HEAD)?:
+xHTTP 0
+
+Service
+URL ".*"
+
+BackEnd
+Address 127.0.0.1
+Port 80
+Priority 1
+
+## End Backend
+End
+
+## End Service
+End
+
+## End listener
+End
+