server { listen 80; server_name novarixnet.com www.novarixnet.com; root /var/www/novarixnet.com/public; 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"; } }