我无法让Mono使用nginx。我安装了OpenBSD 5.3并设置了适当的(包)端口。我建立了单声道,单声道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确实存在。我尝试'触摸'并确保'wheel'和'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;
}
}
}
答案 0 :(得分:1)
我猜想OpenBSD端口会运行nginx监禁或chrooted。所以首先检查一下,如果是这样,你需要更改在jailed root中创建的套接字路径。