sailsjs拒绝地址localhost上的连接

我正在开发一个应用程序,包含后端的sailsjs和前端的ng-boilerplate。 在我的开发机器(64位Ubuntu的)都在工作。 但是,当我把我的应用程序用于testing目的到一个32位的debian机器,sailsjs拒绝连接地址http://localhost:1337/blog
当我用我的debian-machine的主机名replacelocalhost时,就像这样: http://debian:1337/blog ,所有的都会工作。
这是浏览器控制台中的错误消息:

 GET http://localhost:1337/blog net::ERR_CONNECTION_REFUSED 

这是我的/ etc / hosts文件的内容:

 127.0.0.1 localhost #127.0.0.1 debian # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback ff02::1 ip6-allnodes ff02::2 ip6-allrouters</pre> 

这是我的/ etc / hostname的内容:

 debian 

有人能解决这个谜团吗?

所以,我添加一些东西:
/config/env/development.js:

 module.exports = { models: { connection: 'PeeterMongodbServer', migrate: 'alter' } }; 

我的/config/http.js只是空的,这意味着当我有帆安装。

尝试ifconfig或ipconfig适用于例如inet 192.168.1.64

同时更新你的etc / hosts文件$ cat / etc / hosts

127.0.0.1 localhost 192.168.1.64 debian

请确保这是IP地址和主机名之间的选项卡。