- Nginx, SiginalR and FastCGI with mono: No application found
- No Application Found
- Unable to find a matching application for request:
- Host localhost:7171
- Port 7171
- Request Path /app/index.html
- Physical Path C:nginxhtml/app/index.html
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- fastcgi_param QUERY_STRING $query_string;
- fastcgi_param REQUEST_METHOD $request_method;
- fastcgi_param CONTENT_TYPE $content_type;
- fastcgi_param CONTENT_LENGTH $content_length;
- fastcgi_param SCRIPT_NAME $fastcgi_script_name;
- fastcgi_param REQUEST_URI $request_uri;
- fastcgi_param DOCUMENT_URI $document_uri;
- fastcgi_param DOCUMENT_ROOT $document_root;
- fastcgi_param SERVER_PROTOCOL $server_protocol;
- fastcgi_param GATEWAY_INTERFACE CGI/1.1;
- fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
- fastcgi_param REMOTE_ADDR $remote_addr;
- fastcgi_param REMOTE_PORT $remote_port;
- fastcgi_param SERVER_ADDR $server_addr;
- fastcgi_param SERVER_PORT $server_port;
- fastcgi_param SERVER_NAME $server_name;
- # PHP only, required if PHP was built with --enable-force-cgi-redirect
- fastcgi_param REDIRECT_STATUS 200;
- fastcgi_param QUERY_STRING $query_string;
- fastcgi_param REQUEST_METHOD $request_method;
- fastcgi_param CONTENT_TYPE $content_type;
- fastcgi_param CONTENT_LENGTH $content_length;
- fastcgi_param SCRIPT_NAME $fastcgi_script_name;
- fastcgi_param REQUEST_URI $request_uri;
- fastcgi_param DOCUMENT_URI $document_uri;
- fastcgi_param DOCUMENT_ROOT $document_root;
- fastcgi_param SERVER_PROTOCOL $server_protocol;
- fastcgi_param GATEWAY_INTERFACE CGI/1.1;
- fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
- fastcgi_param REMOTE_ADDR $remote_addr;
- fastcgi_param REMOTE_PORT $remote_port;
- fastcgi_param SERVER_ADDR $server_addr;
- fastcgi_param SERVER_PORT $server_port;
- fastcgi_param SERVER_NAME $server_name;
- # PHP only, required if PHP was built with --enable-force-cgi-redirect
- fastcgi_param REDIRECT_STATUS 200;
- fastcgi_param PATH_INFO "";
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- server {
- listen 7171;
- server_name 127.0.0.1;
- #charset koi8-r;
- #access_log logs/host.access.log main;
- location / {
- #fastcgi_index index.html;
- #fastcgi_pass 127.0.0.1:9000;
- #include C:\nginx\conf\fastcgi_params;
- }
- location /app {
- fastcgi_index index.html;
- fastcgi_pass 127.0.0.1:9000;
- include fastcgi_params;
- }
- }
- "C:Program Files (x86)Mono-2.10.8binfastcgi-mono-server4" /socket=tcp:127.0.0.1:9000 /applications=/:/c://nginx//html//app
- "C:Program Files (x86)Mono-2.10.8binfastcgi-mono-server4" /applications=/:/..\..\..\nginx\html\app\ /socket=tcp:127.0.0.1:9000
- location / {
- root c:\nginx\html\app;
- fastcgi_index index.html;
- fastcgi_pass 127.0.0.1:9000;
- include C:\nginx\conf\fastcgi_params;
- }