Files
gemory/nginx.conf
2023-09-03 21:46:30 +02:00

8 lines
140 B
Nginx Configuration File

server {
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ $uri.html /index.html;
}
}