home/deploy/nginx.conf
Neeldhara Misra aa78b43c34
Some checks are pending
Build / build (push) Waiting to run
Create minimal blog homepage
2026-06-13 22:01:17 +02:00

10 lines
142 B
Nginx Configuration File

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