blog/nginx.conf
Sergei Poljanski a4b677f898
All checks were successful
Build and Deploy to Production / check (push) Successful in 9s
Build and Deploy to Production / build (push) Successful in 25s
Build and Deploy to Production / deploy (push) Successful in 36s
blog: Zola site, nginx image, Forgejo deploy pipeline
2026-07-16 19:51:31 +04:00

15 lines
237 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
error_page 404 /404.html;
location / {
try_files $uri $uri/ =404;
}
location ~* \.(css|png|svg|xml|ico)$ {
expires 1h;
}
}