aboutsummaryrefslogtreecommitdiff
path: root/nginx.conf
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2024-10-08 00:44:21 +0200
committerschererleander <leander@schererleander.de>2024-10-08 00:44:21 +0200
commit30a9fc6cd48eb37933f8f4f5a9c94147e172819e (patch)
tree021154198dacefc6f82131796f869b239e15c80c /nginx.conf
parentf1a7fd27b28044c2e35db64f8c611e3a50672f43 (diff)
remove nginx and docker config
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;
- }
-
-}