website/dotechbro_nginx.conf
mike 2190b10090
All checks were successful
Build and Deploy Docker Image / build (push) Successful in 39s
feat: cloudflare stuff
2024-10-25 07:34:44 -04:00

9 lines
No EOL
184 B
Text

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}