CORS 不适用于 hapijs 和 socket.io
Posted
技术标签:
【中文标题】CORS 不适用于 hapijs 和 socket.io【英文标题】:CORS not working with hapijs and socket.io 【发布时间】:2015-05-12 19:15:24 【问题描述】:所以我有一个使用 hapi js 和 socket.io 设置的服务器
var hapi = require('hapi');
var server = new hapi.Server();
server.connection(
host : 'localhost',
port: 3000,
routes: cors: true
);
var io = require("socket.io")(server.listener);
在客户端
var io = socket.connect(':3000');
当我从 localhost 访问时,一切正常,但是当我从外部 IP 访问时,出现 CORS 错误并且无法使其正常工作,在我尝试过的服务器上 io.set( "origins", "*:*" );
不起作用,并且 @ 987654324@ 也不起作用,并在浏览器上引发错误的请求错误。
我错过了什么吗?
非常感谢您的宝贵时间。
【问题讨论】:
【参考方案1】:您可以尝试明确设置原点而不是使用“*”吗?无论如何,您可能不想在生产中使用“*”。
尝试使用:
server.connection(
host : 'localhost',
port: 3000,
routes:
cors:
origin: ['your_origin_here']
);
有时还会发出一个 OPTIONS 预检请求来检查来源,也许也可以共享它以确保正确设置 CORS?
【讨论】:
【参考方案2】:所以问题是将主机设置为 localhost,而不是我使用 0.0.0.0 解释 here
【讨论】:
以上是关于CORS 不适用于 hapijs 和 socket.io的主要内容,如果未能解决你的问题,请参考以下文章
使用 Nginx 的 socket.io 出现 CORS 错误