Port forwarding problem

Quincy nginx-forum at nginx.us
Tue Jul 26 10:35:23 UTC 2011


Hi

I have two machines. One is server with nginx and the other is NAT.
On server I've got mediawiki on port 2222. I forwared port 55555 on my
nat to server:2222. I have one big problem. When I try to open
NAT_IP:55555 in my browser it redirects me to http://:2222.  What's
wrong with my config?

Here is my virtualhost config file:
  1 server {
  2   listen 2222;
  3   server_name MYNAMEl;
  4   server_name_in_redirect off;
  5   port_in_redirect off;
  6 
  7   root XXXX;
  8 
  9   location / {
 10     index index.php;
 11     error_page 404 = @mediawiki;
 12   }
 13 
 14   location @mediawiki {
 15     rewrite ^/([^?]*)(?:\?(.*))? /index.php?title=$1&$2 last;
 16   }
....
 44 }

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,212938,212938#msg-212938



More information about the nginx mailing list