added nginx

This commit is contained in:
dominikhoebert
2024-07-29 20:44:34 +02:00
parent 37d660b6fa
commit 71b773c034
4 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
server {
listen 80;
server_name _;
location / {
root /usr/share/nginx/html;
index index.html;
}
}