Raneto: Nginx proxy pass does not work

A nginx proxy pass such as the one below does not work. All links go to my base domain instead of domain/site/file*.

location /site {
        proxy_pass    http://localhost:3000;
}

About this issue

  • Original URL
  • State: closed
  • Created 10 years ago
  • Comments: 24 (2 by maintainers)

Most upvoted comments

Try changing your nginx block to this:

location /raneto/ { 
    proxy_pass http://localhost:3000/; 
}

Everything looks correct to me but it could have something to do with the missing trailing slash after the :3000 and location /raneto.