summaryrefslogtreecommitdiffstats
path: root/doc/radosgw
diff options
context:
space:
mode:
authorCasey Bodley <cbodley@redhat.com>2018-01-23 22:03:13 +0100
committerCasey Bodley <cbodley@redhat.com>2018-02-01 17:22:25 +0100
commit1bff073b0e3e19e341fc0a08918abb510f0711b4 (patch)
tree7a75c80000c6251415fc94c68a234a638f6f5f42 /doc/radosgw
parentrgw: civetweb accepts multiple port= entries (diff)
downloadceph-1bff073b0e3e19e341fc0a08918abb510f0711b4.tar.xz
ceph-1bff073b0e3e19e341fc0a08918abb510f0711b4.zip
rgw: beast frontend can listen on multiple endpoints
rgw_frontends options port= and endpoint= can be given multiple times, and the beast frontend will listen on each endpoint Fixes: http://tracker.ceph.com/issues/22779 Signed-off-by: Casey Bodley <cbodley@redhat.com>
Diffstat (limited to 'doc/radosgw')
-rw-r--r--doc/radosgw/frontends.rst15
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/radosgw/frontends.rst b/doc/radosgw/frontends.rst
index e28a602e589..3973a5ded0f 100644
--- a/doc/radosgw/frontends.rst
+++ b/doc/radosgw/frontends.rst
@@ -20,12 +20,25 @@ Options
``port``
-:Description: Sets the listening port number.
+:Description: Sets the listening port number. Can be specified multiple
+ times as in ``port=80 port=8000``.
:Type: Integer
:Default: ``80``
+``endpoint``
+
+:Description: Sets the listening address in the form ``address[:port]``,
+ where the address is an IPv4 address string in dotted decimal
+ form, or an IPv6 address in hexadecimal notation. The
+ optional port defaults to 80. Can be specified multiple times
+ as in ``endpoint=::1 endpoint=192.168.0.100:8000``.
+
+:Type: Integer
+:Default: None
+
+
Civetweb
========