nginx update
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 17s

This commit is contained in:
2025-01-26 00:25:40 +01:00
parent ed795097a8
commit e05b9dfaf1

13
nginx.conf Normal file
View File

@@ -0,0 +1,13 @@
server {
listen 80;
server_name test.out.jafre.li;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
error_page 404 /index.html;
}