11 lines
No EOL
236 B
Text
11 lines
No EOL
236 B
Text
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
root /app/dashboard/;
|
|
|
|
location /dashboard/ {
|
|
alias /app/dashboard/;
|
|
index index.html;
|
|
try_files $uri $uri/ /dashboard/index.html$args;
|
|
}
|
|
} |