aboutsummaryrefslogtreecommitdiff
path: root/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf20
1 files changed, 0 insertions, 20 deletions
diff --git a/nginx.conf b/nginx.conf
deleted file mode 100644
index 6f59193..0000000
--- a/nginx.conf
+++ /dev/null
@@ -1,20 +0,0 @@
-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;
- }
-
-}