22 lines
441 B
Plaintext
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";
|
|
}
|
|
}
|