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:51:01 UTC

svn commit: r1095642 - /couchdb/branches/1.1.x/src/couchdb/couch_httpd.erl

Author: rnewson
Date: Thu Apr 21 09:51:01 2011
New Revision: 1095642

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

Modified:
    couchdb/branches/1.1.x/src/couchdb/couch_httpd.erl

Modified: couchdb/branches/1.1.x/src/couchdb/couch_httpd.erl
URL: http://svn.apache.org/viewvc/couchdb/branches/1.1.x/src/couchdb/couch_httpd.erl?rev=1095642&r1=1095641&r2=1095642&view=diff
==============================================================================
--- couchdb/branches/1.1.x/src/couchdb/couch_httpd.erl (original)
+++ couchdb/branches/1.1.x/src/couchdb/couch_httpd.erl Thu Apr 21 09:51:01 2011
@@ -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