Files
Dmitry b163e36b51
Build and Deploy / deploy (push) Failing after 1m1s
Init repo2
2026-05-18 13:48:20 +03:00

12 lines
170 B
Nginx Configuration File

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