Update README and add nginx.conf used for deployment to VPS

This commit is contained in:
2025-04-12 12:54:44 +01:00
parent 5d1d1d8e9c
commit ece597a5f4
+17
View File
@@ -0,0 +1,17 @@
server {
server_name hazemkrimi.tech;
access_log /var/log/nginx/access.log;
root /var/www/hazemkrimi.tech;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location ~* \.(?:css|js|ico|ttf|png|svg|webm) {
expires 1M;
access_log off;
add_header Cache-Control "public";
}
}