1

我无法让 Mono 与 nginx 一起工作。我安装了 OpenBSD 5.3 并设置了适当的(包)端口。我构建了 mono、mono-xsp 和 nginx - 一切都没有发生。这三个似乎都可以正常工作,但不能同时使用。

我正在尝试运行默认的 VS MVC3 模板 Web 应用程序,但不断收到 502(错误网关)。在错误日志中,我看到以下内容:

[crit] 31764#0: *1 connect() to unix:/tmp/fastcgi.socket failed (2: No such file or directory) while connecting to upstream,*

令人沮丧的是 /tmp/fastcgi.socket 确实存在。我尝试了“触摸”并确保“轮子”和“www”具有适当的权限(chmod 775 和 777)。'ls -la /tmp/fastcgi.socket' 的结果没有发现任何问题。

这是我的配置:

worker_processes  1;

events {
    worker_connections  1024;
}

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

    server {
        listen 80;
        access_log   /home/www/nginx.log;
        error_log    /home/www/errors.log;

        # root /home/www/test;
        # index index.html index.htm index.aspx default.aspx;

        location ^~ /Scripts/ { }
        location ^~ /Content/ { }

        location / {
            root /home/www/test;
            # fastcgi_index /;

            fastcgi_pass   unix:/tmp/fastcgi.socket;

            # include        fastcgi_params;
            include /etc/nginx/fastcgi_params;
        }
    }
}
4

1 回答 1

1

我会冒险猜测 OpenBSD 端口运行 nginx 被监禁或 chroot。所以首先检查一下,如果是这样,你需要更改要在被监禁的根目录中创建的套接字路径。

于 2013-05-08T06:41:11.683 回答