Node.js apps and Drupal Nginx Conflict



我目前正在我的VPS上运行两个Ghost Node.js博客。当我在各自的 .conf 文件中使用 proxy_pass 时,它们工作正常。

例如:

proxy_pass http://127.0.0.1:2468;

我有另一个关于端口 2368 的博客。但是当我在我的VPS上引入一个Drupal站点时,我认为它会正常工作,因为我的.conf设置文件正在读取路径和URL。

喜欢这个:

server_name example.com;

root /var/www/example;

发生的情况是,当我转到指向我的服务器的 3 个域时,它们都显示 Drupal 站点。我不明白为什么它会覆盖设置。这三个站点都有单独的config exampledomain.conf Nginx文件。

有人有什么想法吗?几天来我一直在努力解决这个问题!

DRUPAL 服务器块 1

    server {
    server_name leafylane.com;
    root /var/www/leafylane; ## <-- Your only path reference.
    # Enable compression, this will help if you have for instance advagg‎ module
    # by serving Gzip versions of the files.
    gzip_static on;
    location = /favicon.ico {
            log_not_found off;
            access_log off;
    }
    location = /robots.txt {
            allow all;
            log_not_found off;
            access_log off;
    }
    # This matters if you use drush prior to 5.x
    # After 5.x backups are stored outside the Drupal install.
    #location = /backup {
    #        deny all;
    #}
    # Very rarely should these ever be accessed outside of your lan
    location ~* .(txt|log)$ {
            allow 192.168.0.0/16;
            deny all;
    }
    location ~ ..*/.*.php$ {
            return 403;
    }
    # No no for private
    location ~ ^/sites/.*/private/ {
            return 403;
    }
    # Block access to "hidden" files and directories whose names begin with a
    # period. This includes directories used by version control systems such
    # as Subversion or Git to store control files.
    location ~ (^|/). {
            return 403;
    }
    location / {
            # This is cool because no php is touched for static content
            try_files $uri @rewrite;
    }
    location @rewrite {
            # You have 2 options here
            # For D7 and above:
            # Clean URLs are handled in drupal_environment_initialize().
            rewrite ^ /index.php;
            # For Drupal 6 and bwlow:
            # Some modules enforce no slash (/) at the end of the URL
            # Else this rewrite block wouldn't be needed (GlobalRedirect)
            #rewrite ^/(.*)$ /index.php?q=$1;
    }
    location ~ .php$ {
            fastcgi_split_path_info ^(.+.php)(/.+)$;
            #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $request_filename;
            fastcgi_intercept_errors on;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
    }
    # Fighting with Styles? This little gem is amazing.
    # This is for D6
    #location ~ ^/sites/.*/files/imagecache/ {
    # This is for D7 and D8
    location ~ ^/sites/.*/files/styles/ {
            try_files $uri @rewrite;
    }
    location ~* .(js|css|png|jpg|jpeg|gif|ico)$ {
            expires max;
            log_not_found off;
    }
    }

服务器块 2

    server {
    listen 0.0.0.0:8080;
    server_name tomcusack.com;
    access_log /var/log/nginx/tomcusack.com.log;
    location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header HOST $http_host;
    proxy_set_header X-NginX-Proxy true;
    proxy_pass http://127.0.0.1:2368;
    proxy_redirect off;
    }
    }
    server {
    listen 0.0.0.0:8080;
    server_name www.tomcusack.com;
    access_log /var/log/nginx/tomcusack.com.log;
    location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header HOST $http_host;
    proxy_set_header X-NginX-Proxy true;
    proxy_pass http://127.0.0.1:2368;
    proxy_redirect off;
    }
    }

服务器块 3

    server {
    listen 0.0.0.0:8080;
    server_name sancho-panza.co.uk;
    access_log /var/log/nginx/sancho-panza.co.uk.log;
    location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header HOST $http_host;
    proxy_set_header X-NginX-Proxy true;
    proxy_pass http://127.0.0.1:2468;
    proxy_redirect off;
    }
    }
    server {
    listen 0.0.0.0:8080;
    server_name www.sancho-panza.co.uk;
    access_log /var/log/nginx/sancho-panza.co.uk.log;
    location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header HOST $http_host;
    proxy_set_header X-NginX-Proxy true;
    proxy_pass http://127.0.0.1:2468;
    proxy_redirect off;
    }
    }

试一试。我发现了您原始服务器块的很多问题,并对您要尝试做的事情做出了一些假设。如果我弄错了,请告诉我。

你有一个Drupal安装和两个Ghost博客。所有这些都您希望根据请求的 URL 从 VPS 计算机在端口 80 上提供服务。每个请求都需要接受 www 和非 www 请求。

您最初的服务器块有一些错误,例如对 www/non-www 使用多个块,我已经简化了。请注意,如果您计划以不同于非 www 的方式处理 www,则只需将它们分成不同的块。

最后,请确保使用"sudo nginx -s reload"来重新加载配置文件,因为如果您有任何语法错误,这将吐出更详细的调试信息

server  {
        listen 80 default_server;
        listen [::]:80 default_server ipv6only=on;
        server_name leafylane.com www.leafylane.com;
        root /var/www/leafylane; 
        gzip_static on;
        location = /favicon.ico {
                log_not_found off;
                access_log off;
        }
        location = /robots.txt {
                allow all;
                log_not_found off;
                access_log off;
        }
        location ~* .(txt|log)$ {
                allow 192.168.0.0/16;
                deny all;
        }
        location ~ ..*/.*.php$ {
                return 403;
        }
        location ~ ^/sites/.*/private/ {
                return 403;
        }
        location ~ (^|/). {
                return 403;
        }
        location / {
                try_files $uri @rewrite;
        }
        location @rewrite {
                rewrite ^ /index.php;
        }
        location ~ .php$ {
                fastcgi_split_path_info ^(.+.php)(/.+)$;
                include fastcgi_params;
                fastcgi_param SCRIPT_FILENAME $request_filename;
                fastcgi_intercept_errors on;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
        }
        location ~ ^/sites/.*/files/styles/ {
                try_files $uri @rewrite;
        }
        location ~* .(js|css|png|jpg|jpeg|gif|ico)$ {
                expires max;
                log_not_found off;
        }
}
server {
    listen 80;
    server_name tomcusack.com www.tomcusack.com;
    access_log /var/log/nginx/tomcusack.com.log;
    location / {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header HOST $http_host;
        proxy_set_header X-NginX-Proxy true;
        proxy_pass http://127.0.0.1:2368;
        proxy_redirect off;
    }
} 
server {
    listen 80;
    server_name sancho-panza.co.uk www.sancho-panza.co.uk;
    access_log /var/log/nginx/sancho-panza.co.uk.log;
    location / {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header HOST $http_host;
        proxy_set_header X-NginX-Proxy true;
        proxy_pass http://127.0.0.1:2468;
        proxy_redirect off;
    }
}

最新更新