9 lines
161 B
Nginx Configuration File
9 lines
161 B
Nginx Configuration File
server {
|
|
listen 80 http2;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ $uri.html /index.html;
|
|
}
|
|
} |