Files
Linktree/nginx.conf
jafreli e05b9dfaf1
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 17s
nginx update
2025-01-26 00:25:40 +01:00

14 lines
209 B
Nginx Configuration File

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;
}