summaryrefslogtreecommitdiff
path: root/community/pound/pound.cfg
blob: fda8a07f400fdc68b9ec151d3e5d5101f38ba53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
###############################################################################
## Pound configration file
###############################################################################
##
##
## GLOBAL SETTINGS
##
## Specify the user and group Pound will run as.
#User         "http"
#Group        "http"
##
## Specify the directory that Pound will chroot to at runtime.
#RootJail     "/"
##
## Have Pound run in the foreground (if 0) or as a daemon (if 1).
#Daemon       1
##
## Specify the log facility to use.
#LogFacility  daemon
##
## Specify the logging level.
#LogLevel     1
##
## Ignore case when matching URLs.
#IgnoreCase   0
##
## Enable or disable the dynamic rescaling code.
#DynScale     0
##
## Specify how often Pound will check for resurected back-end hosts.
#Alive        30
##
## Specify for how long Pound will wait for a client request.
#Client       10
##
## How long should Pound wait for a response from the back-end.
#TimeOut      15
##
## How long should Pound wait for a connection to the back-end.
#ConnTO       15
##
## How long should Pound continue to answer interrupted connections.
#Grace        30
##
## Use an OpenSSL hardware acceleration card.
#SSLEngine    "name"
##
## Set the control socket path.
#Control      "/tmp/poundctl.socket"
##
##
## LISTENERS
##
## Configure services and backends for the HTTP reverse proxy.
#ListenHTTP
#    Address  10.0.0.1
#    Port     80
#    Service
#        BackEnd
#            Address 127.0.0.1
#            Port    8080
#        End
#        BackEnd
#            Address 127.0.0.1
#            Port    8081
#        End
#    End
#End
##
## Configure services and backends for the HTTPS reverse proxy.
#ListenHTTPS
#    Address  10.0.0.1
#    Port     443
#    Cert     "/etc/ssl/certs/pound.pem"
#    Service
#        BackEnd
#            Address 127.0.0.1
#            Port    8080
#        End
#        BackEnd
#            Address 127.0.0.1
#            Port    8081
#        End
#    End
#End