You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
334 B

worker_processes 4;
events { worker_connections 1024; }
http {
server {
listen 8080;
root /usr/share/nginx/html/nested-app;
include /etc/nginx/mime.types;
location /nested-app/ {
root /usr/share/nginx/html;
try_files $uri $uri/ /nested-app/index.html;
}
}
}