15 lines
303 B
Nginx Configuration File
15 lines
303 B
Nginx Configuration File
|
server {
|
||
|
server_name gyiwr.tf;
|
||
|
root /var/www/gyiwr;
|
||
|
index index.html index.htm index.nginx-debian.html;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
|
||
|
location ~* \.(png|jpg|jpeg|gif)$ {
|
||
|
expires 365d;
|
||
|
add_header Cache-Control "public, no-transform";
|
||
|
}
|
||
|
}
|