diff options
author | Sergey Poznyakoff <gray@gnu.org> | 2024-06-21 07:16:43 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-06-21 21:38:12 +0700 |
commit | 3ef44ca2ddd4aae4239b585128046eed78d916eb (patch) | |
tree | ff6b18f38cb1ac87bb8bc5a0a8bd6cbca301cd76 /network/pound/pound.cfg | |
parent | 589d72757bfaaba50e6d0873f826eaadb7662c4c (diff) |
network/pound: Added (load balancer).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/pound/pound.cfg')
-rw-r--r-- | network/pound/pound.cfg | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/network/pound/pound.cfg b/network/pound/pound.cfg new file mode 100644 index 0000000000000..43205c8eb9b80 --- /dev/null +++ b/network/pound/pound.cfg @@ -0,0 +1,32 @@ +## A minimal pound configuration. +## Refer to pound(8) for details. + +User "nobody" +Group "nobody" +Daemon 1 +LogFacility local3 +LogLevel "detailed" + +Service + BackEnd + Address 127.0.0.1 + Port 8080 + End +End + +ListenHTTP + Address 0.0.0.0 + Port 80 +End + +## Uncomment and edit the following section in order to enable HTTPS +# ListenHTTPS +# Address 0.0.0.0 +# Port 443 +# Cert "/etc/ssl/private/pound.pem" +# Disable SSLv3 +# Ciphers "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:!DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA" +# AddHeader "X-Forwarded-Proto: https" +# RewriteLocation 0 +# xHTTP 2 +# End |