website/nginx.conf
mike 4dd6a09b3f
All checks were successful
Build and Deploy Docker Image / build (push) Successful in 55s
fix: challenges and dockerfile
2024-10-25 03:58:18 -04:00

9 lines
No EOL
184 B
Nginx Configuration File

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