From 43ed9c0c883f2532c30b309dd9a6a8316199909b Mon Sep 17 00:00:00 2001 From: Niklas Yann Wettengel Date: Sat, 13 Apr 2019 01:29:23 +0200 Subject: nat64 --- roles/install_monitoring/files/vnstat | 37 ----------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 roles/install_monitoring/files/vnstat (limited to 'roles/install_monitoring/files/vnstat') diff --git a/roles/install_monitoring/files/vnstat b/roles/install_monitoring/files/vnstat deleted file mode 100644 index cbd2f7c..0000000 --- a/roles/install_monitoring/files/vnstat +++ /dev/null @@ -1,37 +0,0 @@ -server { - listen 80 default_server; - listen [::]:80 default_server ipv6only=on; - server_name localhost; - - charset UTF-8; - - index index.html index.htm; - root /srv/http/vnstat; - - location / { - try_files $uri $uri/ =404; - autoindex on; - } - - # redirect server error pages to the static page /50x.html - # - error_page 500 502 503 504 /50x.html; - location = /50x.html { - root /usr/share/nginx/html; - } - - location /nginx_status { - stub_status on; - access_log off; - allow 127.0.0.1; - allow ::1; - deny all; - } - - - location ~* \.(?:jpg|jpeg|gif|bmp|ico|png|css|js|swf|svg)$ { - expires 30d; - # Optional: Don't log access to assets - access_log off; - } -} -- cgit v1.2.3-54-g00ecf