diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2016-05-01 04:39:38 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2016-05-01 04:39:38 +0000 |
commit | 41c397cac837a50f81b88cb9ce7ca6fbc89c0ad0 (patch) | |
tree | 0c1232a981583f21435f290365e2ba512a8c61ee /www/c-icap | |
parent | acd2e1c16872503ecacfceb74bf2526a3d580cb5 (diff) |
www/c-icap: add ListenAddress directive to conf
- include ListenAddress directive and set it to 127.0.0.1 in c-icap.conf
PR: 208374
Submitted by: Marko Cupac <marko.cupac@mimar.rs>
Notes
Notes:
svn path=/head/; revision=414379
Diffstat (limited to 'www/c-icap')
-rw-r--r-- | www/c-icap/files/patch-c-icap.conf.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/www/c-icap/files/patch-c-icap.conf.in b/www/c-icap/files/patch-c-icap.conf.in new file mode 100644 index 000000000000..baeb5d8d8fe0 --- /dev/null +++ b/www/c-icap/files/patch-c-icap.conf.in @@ -0,0 +1,19 @@ +--- c-icap.conf.in.orig 2016-03-29 09:27:15 UTC ++++ c-icap.conf.in +@@ -123,6 +123,16 @@ MaxRequestsPerChild 0 + # Default: + # InterProcessLockingScheme file + ++# TAG: ListenAddress ++# Format: ListenAddress address ++# Description: ++# Network address that the c-icap server uses to listen to requests. ++# By default c-icap will bind to all available network addresses. Use ++# this directive to restrict it to specific network address. ++# Default: ++# No value ++ListenAddress 127.0.0.1 ++ + # TAG: Port + # Format: Port port + # Description: |