From 86e5f81bdef5a623d82c9e07598a6ae37843a295 Mon Sep 17 00:00:00 2001 From: Robert Newson Date: Thu, 21 Apr 2011 09:51:01 +0000 Subject: 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 --- src/couchdb/couch_httpd.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3