10 lines
150 B
Text
10 lines
150 B
Text
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /app;
|
|
try_files $uri /$uri /index.html;
|
|
}
|
|
}
|
|
|