bump cyberchef to 9.55.0, fix glitches

This commit is contained in:
t3chn0m4g3
2023-01-20 17:42:17 +00:00
parent 8547699061
commit 90eab744b1
5 changed files with 13 additions and 10 deletions

View File

@ -90,24 +90,26 @@ server {
#############################
location / {
index index.html;
auth_basic "closed site";
auth_basic_user_file /etc/nginx/nginxpasswd;
try_files $uri $uri/ /index.html?$args;
try_files $uri $uri/ /index.html;
}
location ^~ /cyberchef {
location /elasticvue {
index index.html;
alias /var/lib/nginx/html/cyberchef;
try_files $uri $uri/ /index.html?$args;
alias /var/lib/nginx/html/esvue/;
try_files $uri $uri/ /elasticvue/index.html;
}
location ^~ /elasticvue {
location /cyberchef {
index index.html;
alias /var/lib/nginx/html/esvue;
try_files $uri $uri/ /index.html?$args;
alias /var/lib/nginx/html/cyberchef/;
try_files $uri $uri/ /cyberchef/index.html;
}
#################
### Proxied sites
#################

Binary file not shown.

Binary file not shown.