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 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 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-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

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