一个服务器块中的两个应用程序

时间:2017-06-29 23:39:37

标签: nginx

我不确定这是否可行,但目标是在一个服务器块中提供两个应用程序。主要应用程序是NodeJS,但我希望有一个“/ blog”指向服务器上的Wordpress安装。我目前能够在子域上提供博客服务。

nginx配置目前看起来像这样:

server {
    listen 80;
    listen [::]:80 ipv6only=on;
    root /var/www/html;
    index index.php index.html index.htm;
    server_name blog.example.com;
    location / {
      try_files $uri $uri/ =404;
    }  

    location ~ \.php$ {
      include snippets/fastcgi-php.conf;
      fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    }
}
server {
    listen 443 ssl default_server;
    listen [::]:443 ssl default_server;
    include snippets/xyz.conf;
    include snippets/zyx.conf;

    location / {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-NginX-Proxy true;
        proxy_pass http://localhost:3000/;
        proxy_ssl_session_reuse off;
        proxy_set_header Host $http_host;
        proxy_cache_bypass $http_upgrade;
        proxy_redirect off;
    }
}

我是否有办法以与第一个类似的方式将博客提供给第二个服务器块内的“/ blog”?

0 个答案:

没有答案
相关问题