5

我在使用 nginx 和sails 时遇到了跨域配置问题。问题是,如果我让套接字正确连接,http://domain-server.com/socket.io/ 那么 RESTful 请求将失败。如果 RESTful 有效,则套接字不会。

设置

客户http://domain.com

服务器http://server-domain.com

"sails.io.js": "0.10.3"客户端是一个使用这个配置的角度应用程序io.sails.url = 'http://domain-server.com';

Server 是一个兼具 RESTful 请求和套接字功能的 Sails 应用程序。

帆 CORS 配置

module.exports.cors = {
    allRoutes: true,
    origin: 'http://domain.com',
    credentials: true,
    methods: 'GET, POST, PUT, DELETE, OPTIONS, HEAD',
    headers: 'content-type,Access-Control-Allow-Origin'
};

Sails 插座配置

module.exports.socket {
    onConnect: function() {},
    onDisconnect: function() {},
    authorization: false,
    'backwardsCompatibilityFor0.9SocketClients': false,
    grant3rdPartyCookie: true,
    origins: 'http://domain.com'
};

nginx 配置

注释掉的是我在 nginx 配置中摆弄的东西,但没有取得多大成功(也尝试了客户端地址而不是 *)。

server {
    listen 80;

    server_name domain-server.com;
#add_header Access-Control-Allow-Origin *;
    location / {
#       add_header Access-Control-Allow-Origin *;

        proxy_pass http://localhost:1337;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
#        proxy_set_header Access-Control-Allow-Origin *;
        proxy_cache_bypass $http_upgrade;
   }
}

进行 RESTful 调用的 angularjs 服务方法

function query(path, attributes) {

    return $http({
        url: domain + path,
        params: attributes,
        method: "GET",
        widthCredentials: true
    });
}

在角度配置函数中

$httpProvider.defaults.useXDomain = true;

这是当前配置,这是我遇到的结果。

浏览器控制台输出

Resource interpreted as Script but transferred with MIME type text/html: "http://domain-server.com/__getcookie".- 好的

|>
\___/ sails.io.js:200 io.socket connected successfully.
- 好的

XMLHttpRequest cannot load http://domain-server.com/login?password=test&username=test. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://domain.com' is therefore not allowed access.- 不好

更新

似乎一切正常,如果我直接使用开始航行,sails lift或者node app.js在使用.conf文件中的新贵脚本启动它时,会发生跨域问题。

新贵脚本

#!upstart
description "demo"
author "gillesc"

start on (local-filesystems and net-device-up IFACE=eth0)
stop on shutdown

respawn
respawn limit 5 60

script
  exec /usr/bin/node /var/www/apps/domain-server.com/app.js > /var/www/apps/domain-server.com/server.log 2>&1
end script
4

1 回答 1

1

尝试将以下内容添加到 Sails 应用的app.js文件的顶部:

process.chdir(__dirname);

not found您看到的可能是默认的 Express 404 消息。如果您尝试将 Sails 应用程序提升到其自己的目录之外,则 API 文件(例如控制器)将无法正确加载。在某些时候将其process.chdir添加到默认app.js以防止出现此问题,但看起来在此过程中某处出现了回归。

于 2014-08-31T20:21:35.930 回答