fix: Missing nginx.conf

main
Lunix-420 2024-10-13 13:28:40 +02:00
parent 4d9f603250
commit 0be56604ca
1 changed files with 10 additions and 0 deletions

10
nginx.conf 100644
View File

@ -0,0 +1,10 @@
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}