The default configuration file under conf.d is app.conf.

The content of app.conf is as follows:

server {
    listen 80; # Port to listen on
    server_name localhost; # Domain name
    location / {
        root /data/appdeploy; # Directory where the packaged code is located
    }
}