This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/ops/nginx/novarixnet.com.conf.example
T
2026-05-02 18:06:59 +02:00

22 lines
441 B
Plaintext

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";
}
}