mirror of
https://github.com/AtHeartEngineering/bandada.git
synced 2026-01-09 01:47:54 -05:00
13 lines
269 B
Nginx Configuration File
13 lines
269 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
error_page 404 /index.html;
|
|
location = / {
|
|
root /usr/share/nginx/html;
|
|
internal;
|
|
}
|
|
} |