is your Appserver hostname-aware?
your error 500 should come from your appserver; check
your logfiles on that part
http://wiki.nginx.org/HttpProxyModule
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,238537,238570#msg-238570
___
nginx mail
Hi.
I tried both and it gets a little bit better. But now I get a 500-error
when trying to access http://host.domainname.de. The url returned is
http://host.domainname.de/AppName/main.aspx?svid=7. At first I thought the
Webserver is broken but I still can access the Webapplication via
http://:8081
Hi.
Try something like:
location / {
proxy_pass http://:8081/AppName/;
}
Or
location / {
proxy_pass http://:8081/AppName/$uri;
}
On Mon, Apr 22, 2013 at 5:17 PM, Jörg Kastning wrote:
Hello.
In our lan I can reach my webapplication with an url like http://
:8081/AppName. I try to configure nginx to forward requests
from wan site to this server. All firewall policies needed are configured
and the dns entry for access from wan are set and reachable.
I tried the following configu