Node.js + Socket.io + Apacheを次のように統合する方法を探しています。 Apache/HTMLファイルの配信を継続したい。 私はNode.jsのは、ポート8080で接続を待機するために、このような何かしたい:私は、このサーバーに接続するHTMLにアクセスする場合、それは動作しますが、私はmydomian.com:8080に行く必要がNode.js + Socket.io + Apache
var util = require("util"),
app = require('http').createServer(handler),
io = require('/socket.io').listen(app),
fs = require('fs'),
os = require('os'),
url = require('url');
app.listen(8080);
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
socket.emit('ok 1', { hello: 'world' });
});
socket.on('clientMSG', function (data) {
socket.emit('ok 2', { hello: 'world' });
});
});
を/index.html。 私が望むのは、mydomian.com/index.htmlに行くことができることです。ソケット接続開くことができます。この例では
<script>
var socket = io.connect('http://mydomain.com', {port: 8080});
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data from the client' });
});
socket.on('connect', function (data) {
console.log("connect");
});
socket.on('disconnect', function (data) {
console.log("disconnect");
});
//call this function when a button is clicked
function sendMSG()
{
console.log("sendMSG");
socket.emit('clientMSG', { msg: 'non-scheduled message from client' });
}
</script>
を私はURLにポート8080に行くと文句を言わない仕事のfs.readFileを使用する必要がありました。
提案がありますか? Tks。
特に静的ファイルを提供したい場合は、特にApacheの代わりにnginxを試してください。 Apacheは、ノードを使用するという理念/理由に部分的に反しているすべての要求に対して新しいスレッドを開始します。 – badunk