first website commit

This commit is contained in:
Kismet Hasanaj
2026-05-02 18:06:59 +02:00
parent ab9bf21087
commit bad0d2a29a
11 changed files with 12074 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
server {
listen 80;
server_name novarixnet.com www.novarixnet.com;
root /var/www/novarixnet.com;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
location ~* \.(svg|png|jpg|jpeg|gif|webp|css|js)$ {
expires 7d;
add_header Cache-Control "public, max-age=604800, immutable";
}
}