I'm trying to configure an nginx server to act as a proxy to a node application. What I would like is to have any static files served by nginx and all other paths forwarded on to the Node.js application (inluding the / path).
I've seen the following question/answers: How to serve all existing static files directly with NGINX, but proxy the rest to a backend server.
And as directed, I've configured my site config as follows:
server {
  server_name subdom.domain.com;
  listen 80;
  location / {
    root /var/www/application/public_html;
    try_files $uri $uri/ @application;
  }
  location @application {
    proxy_set_header X-Real-IP  $remote_addr;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://localhost:3000;
  }
}
However when browsing to subdom.domain.com/ I get a 403 Forbidden. I'm guessing this is because nginx cannot find a default document, but I want the default document to be send to proxy, any idea how to do this?
 
     
    