简体   繁体   English

部署Nginx,套接字IO,Linode 404错误

[英]Deploy Nginx, Socket IO, Linode 404 error

I have been struggling trying to deploy a NodeJS server as SocketIO server on Linode. 我一直在努力尝试将NodeJS服务器部署为Linode上的SocketIO服务器。 I have deployed my Django projects that works fine and I have redirected a subdomain to talk to the node server listening on port 8002 of local host. 我已经部署了可以正常工作的Django项目,并且已经重定向了一个子域,以便与侦听本地主机端口8002的节点服务器通信。 I get a 404 error in my nginx log. 我在Nginx日志中收到404错误。

"GET /socket.io/?EIO=3&transport=polling HTTP/1.1" 404 72 "-" "Dalvik/2.1.0 (Linux; U; Android 5.0.1; LG-D850 Build/LRX21Y)"

Here is my nginx config 这是我的nginx配置

server {
        listen 80;
        server_name www.domain.com;
        location / {
                 proxy_pass http://127.0.0.1:8000;
        }
        location /static {
                alias /home/exampledir/staticfiles;
        }
        access_log  /home/exampledir/nginx-access.log;
        error_log  /home/exampledir/nginx-error.log info;
}
server {
    listen 80;
    server subdomain.domain.com;
    location / {
        proxy_pass http://127.0.0.1:8002;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
    }
}

Here is my nodejs server file 这是我的nodejs服务器文件

var socket = require('socket.io');
var express = require('express');
var http = require('http');
var app = express();
var server = http.createServer(app);
server.listen(8002, '127.0.0.1');
var io = socket.listen(server);
var redis = require('redis');
var sub = redis.createClient();
sub.subscribe('notify');
io.on('connection', function(socket){
    socket.on('join', function (data) {
        ...
    });
});
//Grab message from Redis and send to client
sub.on('message', function(channel, message){
...
});

I have tried using CORS and stuff but it does not work just keeps giving me a 404. I have verified the node server is running at 127.0.0.1:8002 My android socket is connecting to 我尝试使用CORS和其他东西,但它一直无法正常工作,只是一直给我一个404。我已验证节点服务器的运行速度为127.0.0.1:8002我的android套接字正在连接到

mSocket = IO.socket("http://subdomain.domain.com/);

Please help. 请帮忙。

Try this config 试试这个配置

server {

    listen 80;

    # Make site accessible from http://localhost/

    server_name domain.com;

    location / {

             proxy_pass http://127.0.0.1:8000;

    }


    location / {

             proxy_pass http://127.0.0.1:8000;

    }

    location /static {

            alias /home/example-dir/staticfiles;

    }

    access_log  /home/example-dir/nginx-access.log;

    error_log  /home/example-dir/nginx-error.log info;

  }



 server {

    listen 80;

    server_name subdomain.domain.com;

    location / {

            proxy_pass http://127.0.0.1:8002;

            proxy_http_version 1.1;

            proxy_set_header Upgrade $http_upgrade;

            proxy_set_header Connection "upgrade";

            proxy_set_header Host $host;

    }

    access_log  /home/example-dir/socketnginx-access.log;

    error_log  /home/example-dir/socketnginx-error.log info;

   }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM