10 lines
189 B
Text
10 lines
189 B
Text
![]() |
server {
|
||
|
listen 80;
|
||
|
server_name localhost;
|
||
|
root /app/dashboard/;
|
||
|
|
||
|
location / {
|
||
|
index index.html;
|
||
|
try_files $uri $uri/ /index.html$args;
|
||
|
}
|
||
|
}
|