diff --git a/README.md b/README.md index 4bcc82b9..9b368a3e 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ All main configuration could be done thrue config.json. }, "server" : true, /* server mode or testing mode */ "logs" : false, /* logs or console ouput */ - "port" : 31337, /* Cloud Commander port */ + "port" : 80, /* Cloud Commander port */ "ip" : "127.0.0.1" /* Cloud Commander IP */ } ``` @@ -95,14 +95,14 @@ or on win platform just cloudcmd After thet Cloud Commander reads config file **config.json** and start server -on 31337 port, if none of port varibles(*cloud9*, *cloudfoundry* and *nodester*) +on 80 port, if none of port varibles(*cloud9*, *cloudfoundry* and *nodester*) isn't exist. Then type in browser - http://127.0.0.1:31337 + http://127.0.0.1 or - http://localhost:31337 + http://localhost Updating --------------- **Cloud Commander** is very buggy and alfa so it's very often updated. For update diff --git a/server.js b/server.js index 2d9c4f25..1f741bae 100644 --- a/server.js +++ b/server.js @@ -22,7 +22,7 @@ var CloudServer = { server : true, logs : false, socket : true, - port : 31337, + port : 80, ip : '127.0.0.1' },