Re: ASP.NET pages with nginx

2014-03-02 Thread Maxim Dounin
Hello! On Sun, Mar 02, 2014 at 05:32:43AM -0500, pumiz wrote: [...] > and the output I get is > > --- > No Application Found > > Unable to find a matching application for request: > > Host 10.75.2.5 > Port 80 > Request Path /Default.aspx

Re: ASP.NET pages with nginx

2014-03-02 Thread pumiz
Hi All, I am also stuck trying to load aspx pages with raspberry pi and nginx. I start the mono server with the below line: sudo fastcgi-mono-server4 /applications=localhost:/:/home/pi/var/www/ /soket=tcp:127.0.0.1:9000 and nginx with the following: sudo /etc/init.d/nginx start and the output I

Re: ASP.NET pages with nginx

2014-02-11 Thread parnican
You have all my respect! Hello World! Got an aspx page running on nginx!!! THANK YOU! Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247323,247417#msg-247417 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/n

Re: ASP.NET pages with nginx

2014-02-11 Thread Jonathan Matthews
On 11 Feb 2014 15:09, "parnican" wrote: > > This didn't work. > proxy_set_header Host $proxy_host; > next try > proxy_set_header Host $http_host:8080; Tell your app to expect "bernolak.dyndns.info", without the port suffix. Tell nginx to set the Host header to "bernolak.dyndns.info", without th

Re: ASP.NET pages with nginx

2014-02-11 Thread parnican
This didn't work. proxy_set_header Host $proxy_host; next try proxy_set_header Host $http_host:8080; added #proxy_set_header Connection close; //or location / { root /var/www/demo; index index.html index.htm default.aspx Default.aspx; proxy_set_header Host $proxy_host;

Re: ASP.NET pages with nginx

2014-02-11 Thread parnican
You are right, now its that phase..throwing crap at a wall and seeing what sticks ;-) WinForm app, better to say console app, hello world.exe is working. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247323,247403#msg-247403 ___ nginx maili

Re: ASP.NET pages with nginx

2014-02-11 Thread Jonathan Matthews
On 11 Feb 2014 13:44, "parnican" wrote: > > Just did some experiments with following settings: > proxy_set_header X-Real-IP $remote_addr; > proxy_pass_header X-Accel-Redirect; > > No change:( ...its time to give up or any ides? How about using it to set the header that contains the "wrong" set

Re: ASP.NET pages with nginx

2014-02-11 Thread parnican
Just did some experiments with following settings: proxy_set_header X-Real-IP $remote_addr; proxy_pass_header X-Accel-Redirect; No change:( ...its time to give up or any ides? Also tried: proxy_cache_bypass $cookie_nocache $arg_nocache $arg_comment; proxy_cache_bypass $http_pragma $http_author

Re: ASP.NET pages with nginx

2014-02-11 Thread Jonathan Matthews
On 10 Feb 2014 17:12, "parnican" wrote: > > I have tried "experiments" with following parameters but no change..not sure > this is the way i should go... Any suggestion how to make nginx *not* pass > through the ":8080? How about proxy_set_header? J __

Re: ASP.NET pages with nginx

2014-02-10 Thread parnican
I have played with this command: sudo fastcgi-mono-server4 /applications=/bernolak.dyndns.info:8080:/:/var/www/demo/ /socket=tcp:127.0.0.1:9000 /logfile=/var/log/mono/fastcgi.log /printlog=True & Is it possible that i don't have VPath:realpath configured correctly? If not what is my VPath? I have

Re: ASP.NET pages with nginx

2014-02-10 Thread parnican
I have tried "experiments" with following parameters but no change..not sure this is the way i should go... Any suggestion how to make nginx *not* pass through the ":8080? proxy_pass_request_headers off; proxy_pass_request_body off; proxy_redirect off; } } Posted at Nginx Forum: http://foru

Re: ASP.NET pages with nginx

2014-02-10 Thread parnican
HI Jonathan, thanks for reply. I really apologize but i have no clue what do you by ^^ ? Thank you. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247323,247359#msg-247359 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.o

Re: ASP.NET pages with nginx

2014-02-10 Thread Jonathan Matthews
On 10 February 2014 10:55, parnican wrote: > Hi all, > i would like to use my aspx pages with raspberry and nginx but it seem to be > not an easy goal... > I have tried almost all "tutorials" on the web but i can not find solution > for my issue. With lots of experiments i was able to reach a poin

ASP.NET pages with nginx

2014-02-10 Thread parnican
Hi all, i would like to use my aspx pages with raspberry and nginx but it seem to be not an easy goal... I have tried almost all "tutorials" on the web but i can not find solution for my issue. With lots of experiments i was able to reach a point where i can not move forward. No Application Fou