diff options
author | pi <pi@FreeBSD.org> | 2016-05-01 12:39:38 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2016-05-01 12:39:38 +0800 |
commit | 2152c04277134bdf63434574ad9f09022adb65f0 (patch) | |
tree | 0c1232a981583f21435f290365e2ba512a8c61ee /www | |
parent | 1db18261952635864d0e63437451fbe9867514da (diff) | |
download | freebsd-ports-gnome-2152c04277134bdf63434574ad9f09022adb65f0.tar.gz freebsd-ports-gnome-2152c04277134bdf63434574ad9f09022adb65f0.tar.zst freebsd-ports-gnome-2152c04277134bdf63434574ad9f09022adb65f0.zip |
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>
Diffstat (limited to 'www')
-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: |