summarylogtreecommitdiffstats
path: root/bandwidthd-webui.conf
diff options
context:
space:
mode:
Diffstat (limited to 'bandwidthd-webui.conf')
-rw-r--r--bandwidthd-webui.conf37
1 files changed, 0 insertions, 37 deletions
diff --git a/bandwidthd-webui.conf b/bandwidthd-webui.conf
deleted file mode 100644
index e72cb98c43d3..000000000000
--- a/bandwidthd-webui.conf
+++ /dev/null
@@ -1,37 +0,0 @@
-daemon off;
-worker_processes auto;
-
-pid /run/bandwidthd/bandwidthd-webui.pid;
-
-error_log stderr;
-
-events {
- worker_connections 1024;
-}
-
-http {
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
-
- access_log off;
-
- types_hash_max_size 4096;
-
- sendfile on;
- gzip on;
-
- server {
- listen 667;
- listen [::]:667;
-
- root /var/lib/bandwidthd/htdocs;
-
- location / {
- index index.html;
- }
-
- location = /favicon.ico {
- log_not_found off;
- }
- }
-}