Nginx + php5-fpm + node.js

时间:2014-02-01 10:34:27

标签: php node.js nginx

解决

我的nginx配置文件中存在问题。

代码location ~* \.(?:ico|css|js|gif|jpe?g|png)$是最具体的匹配,所以我更改了一行:

location /node/

为:

location ^~ /node/

现在一切正常。

问题

首先,为我的英语道歉。

我有nginx和node.js的问题,我想用php5-fpm的nginx,.php文件和带有node.js的domain.com/node/文件服务所有文件 我的配置可以做到这一点,但是HTML文档中的脚本存在问题,例如。

<script type="text/javascript" src="http://domain.com/node/socket.io/socket.io.js"></script>

显示错误404,并且node.js不提供此文件。

这是我的配置:

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

    return 301 http://domain.com$request_uri;
}

server {
    server_name domain.com;
    listen 80;

    access_log /var/log/nginx/domain_com_access_log;
    error_log  /var/log/nginx/domain_com_error_log;
    root       /home/domain_com/www;

    location ~* \.(?:ico|css|js|gif|jpe?g|png)$
    {
        expires max;
        access_log off;
        log_not_found off;
    }

    location = /robots.txt  { access_log off; log_not_found off; }
    location ~ /\.          { access_log off; log_not_found off; deny all; }
    location ~ ~$           { access_log off; log_not_found off; deny all; }

    location ~ cache/(.*)$
    {
        deny all;
    }

    location /node/
    {
        try_files $uri = 404;
        proxy_set_header Host $host;
        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://127.0.0.1:1234/;
        proxy_redirect off;
    }

    location ~ \.php$
    {
        try_files $uri = 404;
        include fastcgi_params;
        fastcgi_pass unix:/tmp/php-fpm_domain_com.sock;
    }
}

0 个答案:

没有答案