diff options
author | Robert Newson <rnewson@apache.org> | 2011-04-21 09:51:01 +0000 |
---|---|---|
committer | Robert Newson <rnewson@apache.org> | 2011-04-21 09:51:01 +0000 |
commit | 86e5f81bdef5a623d82c9e07598a6ae37843a295 (patch) | |
tree | 8914615639600c8831d35c03abddc1ade5b022f9 /src/couchdb | |
parent | 9391566c6fa2bcc165f70032f047c905283e0783 (diff) |
default SSL port is 6984.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1095642 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb')
-rw-r--r-- | src/couchdb/couch_httpd.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_httpd.erl b/src/couchdb/couch_httpd.erl index 5774ed05..73d214e8 100644 --- a/src/couchdb/couch_httpd.erl +++ b/src/couchdb/couch_httpd.erl @@ -35,7 +35,7 @@ start_link(http) -> Port = couch_config:get("httpd", "port", "5984"), start_link(?MODULE, [{port, Port}]); start_link(https) -> - Port = couch_config:get("ssl", "port", "5984"), + Port = couch_config:get("ssl", "port", "6984"), CertFile = couch_config:get("ssl", "cert_file", nil), KeyFile = couch_config:get("ssl", "key_file", nil), Options = case CertFile /= nil andalso KeyFile /= nil of |