An nginx-app.conf configuration file is included in the server section of the main NGINX configuration file. The default configuration file looks like this:
location / {
# try to serve files directly, fallback to the front controller
try_files $uri /$front_controller_file$is_args$args;
}
To define a custom configuration file, put a file named nginx-app.conf in the project root directory. The runtime will override the default file with the file you provided.
This is my nginx-app.conf file
Can PLEASE someone help me?
Thanks in advance