Sindbad~EG File Manager
server {
listen 9999 ssl http2 default_server;
listen [::]:9999 ssl http2 default_server;
server_name _;
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/htpasswd;
allow 10.20.0.20;
allow 82.64.127.72;
deny all;
location / {
proxy_pass http://127.0.0.1:2812;
}
location = /netdata {
return 301 /netdata/;
}
location ~ /netdata/(?<ndpath>.*) {
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_pass_request_headers on;
proxy_set_header Connection "keep-alive";
proxy_store off;
proxy_pass http://127.0.0.1:19999/$ndpath$is_args$args;
gzip on;
gzip_proxied any;
gzip_types *;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists