node.js - 用nginx配置node的程序,已經改了conf的配置,用網域無法存取?
phpcn_u1582
phpcn_u1582 2017-06-30 09:57:06
0
3
925

我用pm2運行了一個node的範例程式(express的範例程式),目前可以用http://127.0.0.1:3000 打開,現在我想用自己自訂的網域打開,但我用nginx配置之後還是不能用自訂網域(http://mydomain.com)打開,用127.0.0.1或localhost是可以的,是不是還要在本機設定host呢?但在網路上找了一圈nginx設定經驗或說明沒有一個說還要改host,希望能有人解答。

附上nginx.conf的設定資訊


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    upstream nodejs {
        server 127.0.0.1:3000;
    }

    server {
        listen       80;
        server_name  www.mydomain.com mydomain.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host  $http_host;
            proxy_set_header X-Nginx-Proxy true;
            proxy_set_header Connection "";
            proxy_pass      http://nodejs;
            

            #root   html;
            #index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    }

    include servers/*;
}
phpcn_u1582
phpcn_u1582

全部回覆(3)
Ty80

NodeJs專案中的一些要點記錄 - QueenKing - SegmentFault /a/11...

为情所困

本地環境要設定host,自訂網域對應到127.0.0.1

巴扎黑

網域是給外網伺服器用的,你本機搞網域名稱存取什麼鬼?

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板