You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2011/04/21 11:49:24 UTC

svn commit: r1095640 - /couchdb/trunk/src/couchdb/couch_httpd.erl

Author: rnewson
Date: Thu Apr 21 09:49:24 2011
New Revision: 1095640

URL: http://svn.apache.org/viewvc?rev=1095640&view=rev
Log:
default SSL port is 6984.

Modified:
    couchdb/trunk/src/couchdb/couch_httpd.erl

Modified: couchdb/trunk/src/couchdb/couch_httpd.erl
URL: http://svn.apache.org/viewvc/couchdb/trunk/src/couchdb/couch_httpd.erl?rev=1095640&r1=1095639&r2=1095640&view=diff
==============================================================================
--- couchdb/trunk/src/couchdb/couch_httpd.erl (original)
+++ couchdb/trunk/src/couchdb/couch_httpd.erl Thu Apr 21 09:49:24 2011
@@ -36,7 +36,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