使用NGINX在node.js应用程序的端口80上为具有虚拟主机的Amazon EC2托管的域提供HTTP流量

时间:2018-07-12 20:26:58

标签: node.js http nginx amazon-ec2 bitnami

我有2个使用Apache virualhost在运行bitnami wordpress的Amazon EC2上托管的域

  1. wordpres.com>'/ apps / wordpress'

  2. website.com>'/ apps / website'

我创建了一个托管在'/ apps / website / graph'内的node.js图应用程序

我希望在 website.com/graph

上访问此应用程序
const express = require('express');
const bodyParser = require('body-parser');
const app = express();


app.use(express.static('public'));
app.use(bodyParser.urlencoded({ extended: true }));
app.set('view engine', 'ejs');

app.get('/graph', function (req, res) {
  res.render('index');
});

app.post('/graph', function (req, res) {
  console.log(req.body.speed + " " + req.body.freq);
  res.render('index');
})

var port = 3000;

app.listen(port, function () {
  console.log('Server Running on port ' + port)
});

服务器在website.com:3000/graph和wordpress.com:3000/graph上运行良好

问题1:我如何使其在website.com:3000/graph上仅 起作用?

问题的第二部分是如何使用nginx在端口80上提供HTTP流量,使其在website.com/graph上运行?

我已经在'/ sites-available'中创建了这个'graph'nginx文件,并在'/ sites-enabled'中进行了链接:

server {
  listen 80;
  server_name website.com;
  location /graph{
    proxy_set_header  X-Real-IP  $remote_addr;
    proxy_set_header  Host       $http_host;
    proxy_pass        http://127.0.0.1:3000/graph;
  }
}

然后,我重新启动了nginx,但是当我访问website.com/graph时,它不起作用。

问题2 :如何使这种HTTP流量有效并且仅在website.com/graph上有效?

我在这里做错了什么或想念什么?我是一名前端设计师,我对服务器方面的经验很少,所以请原谅:)

作为参考,我正在关注此tutorial

谢谢。

nginx.conf

bitnami@ip-172-..-.-..:/etc$ cat nginx/nginx.conf
user www-data;
worker_processes 4;
pid /run/nginx.pid;

events {
        worker_connections 768;
        # multi_accept on;
}

http {

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;

        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ##
        # Logging Settings
        ##

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";

        # gzip_vary on;
        # gzip_proxied any;
        # gzip_comp_level 6;
        # gzip_buffers 16 8k;
        # gzip_http_version 1.1;
        # gzip_types text/plain text/css application/json application/x-javascript text/xml appli                                                                                                                                            cation/xml application/xml+rss text/javascript;

        ##
        # nginx-naxsi config
        ##
        # Uncomment it if you installed nginx-naxsi
        ##

        #include /etc/nginx/naxsi_core.rules;

        ##
        # nginx-passenger config
        ##
        # Uncomment it if you installed nginx-passenger
        ##

        #passenger_root /usr;
        #passenger_ruby /usr/bin/ruby;

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}


#mail {
#       # See sample authentication script at:
#       # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
#       # auth_http localhost/auth.php;
#       # pop3_capabilities "TOP" "USER";
#       # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
#       server {
#               listen     localhost:110;
#               protocol   pop3;
#               proxy      on;
#       }
#
#       server {
#               listen     localhost:143;
#               protocol   imap;
#               proxy      on;
#       }
#}

1 个答案:

答案 0 :(得分:1)

@PulledBull,我在聊天中一起解决了这个问题。他们具有以下Apache配置:

<VirtualHost *:80>
  ServerName domain.com
  ServerAlias www.domain.com
  DocumentRoot "/opt/bitnami/apps/wordpress/htdocs"

  Include "/opt/bitnami/apps/wordpress/conf/httpd-app.conf"
</VirtualHost>

<VirtualHost *:80>
  ServerName other.domain
  ServerAlias www.other.domain
  DocumentRoot "/opt/bitnami/apps/is/htdocs"

  ErrorLog "logs/otherdomain-error_log"
  CustomLog "logs/otherdomain-access_log" common
</VirtualHost>

<VirtualHost *:443>
  ServerName domain.com
  ServerAlias www.domain.com
</VirtualHost>

我们通过编辑现有配置而不使用NGINX解决了该问题。我们向希望使用Node.js应用程序的每个虚拟主机添加了以下行:

ProxyPass /traingraph 127.0.0.1:3000

我们只希望/ traingraph在other.domain上可访问,因此我们得到了以下配置:

<VirtualHost *:80>
  ServerName domain.com
  ServerAlias www.domain.com
  DocumentRoot "/opt/bitnami/apps/wordpress/htdocs"

  Include "/opt/bitnami/apps/wordpress/conf/httpd-app.conf"
</VirtualHost>

<VirtualHost *:80>
  ServerName other.domain
  ServerAlias www.other.domain
  DocumentRoot "/opt/bitnami/apps/is/htdocs"

  ErrorLog "logs/otherdomain-error_log"
  CustomLog "logs/otherdomain-access_log" common
  ProxyPass /traingraph 127.0.0.1:3000
</VirtualHost>

<VirtualHost *:443>
  ServerName domain.com
  ServerAlias www.domain.com
</VirtualHost>