This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
max/roles/blog/templates/nginx.conf.j2

19 lines
334 B
Text
Raw Normal View History

2023-01-26 07:20:38 +00:00
server {
listen 80;
2023-02-08 07:27:30 +00:00
server_name {{ domain_name_pim }};
2023-01-26 07:20:38 +00:00
index index.html index.htm;
root /var/www/blog;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
}
error_page 404 /404.html;
}