images
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
a365eddee9
commit
9163d09020
@ -1,17 +1,20 @@
|
|||||||
worker_processes 4;
|
worker_processes 1;
|
||||||
|
|
||||||
events { worker_connections 1024; }
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
http {
|
http {
|
||||||
include /etc/nginx/mime.types;
|
include /etc/nginx/mime.types;
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 8080;
|
listen 8000;
|
||||||
root /usr/share/nginx/html/nested-app;
|
server_name localhost;
|
||||||
include /etc/nginx/mime.types;
|
|
||||||
|
|
||||||
location /nested-app/ {
|
location / {
|
||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
try_files $uri $uri/ /nested-app/index.html;
|
index index.html;
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in new issue