blob: 6f59193b56d66bc51ecb9c91ca08080ef8df2a0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
server {
listen 80;
server_name schererleander.com;
root /usr/share/nginx/html;
location /404.hml {
internal;
}
error_page 404 /404.html;
location ~* \.(css|js)$ {
root /usr/share/nginx/html;
try_files $uri =404;
access_log off;
expires max;
}
}
|