14 lines
270 B
Nginx Configuration File
14 lines
270 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name _;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
# VitePress emits .html files while its public links omit the extension.
|
|
try_files $uri $uri.html $uri/ =404;
|
|
}
|
|
}
|