aboutsummaryrefslogtreecommitdiff
path: root/nginx-dev.conf
diff options
context:
space:
mode:
Diffstat (limited to 'nginx-dev.conf')
-rwxr-xr-xnginx-dev.conf17
1 files changed, 0 insertions, 17 deletions
diff --git a/nginx-dev.conf b/nginx-dev.conf
deleted file mode 100755
index ed94af7..0000000
--- a/nginx-dev.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-server {
- server_name cleberg.net www.cleberg.net;
-
- root /usr/share/nginx/html;
- index index.html;
- autoindex on;
-
- access_log /var/log/nginx/cleberg.net.access.log;
- error_log /var/log/nginx/cleberg.net.error.log;
-
- location / {
- try_files $uri $uri/ =404;
- }
-
- listen [::]:80;
- listen 80;
-}