diff --git a/docker/nginx/Dockerfile b/docker/nginx/Dockerfile index bed43559..2a8a83b3 100644 --- a/docker/nginx/Dockerfile +++ b/docker/nginx/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.19 +FROM alpine:3.20 # # Include dist COPY dist/ /root/dist/ diff --git a/docker/nginx/builder/cyberchef/Dockerfile b/docker/nginx/builder/cyberchef/Dockerfile index bcf49d8e..142dbd9b 100644 --- a/docker/nginx/builder/cyberchef/Dockerfile +++ b/docker/nginx/builder/cyberchef/Dockerfile @@ -2,7 +2,7 @@ FROM node:18-alpine as builder # # Prep and build Cyberchef -ENV CY_VER=v10.8.2 +ENV CY_VER=v10.19.4 RUN apk -U --no-cache add build-base git python3 && \ chown -R node:node /srv && \ npm install -g grunt-cli diff --git a/docker/nginx/builder/esvue/Dockerfile b/docker/nginx/builder/esvue/Dockerfile index 589a7d1e..c62dfdc0 100644 --- a/docker/nginx/builder/esvue/Dockerfile +++ b/docker/nginx/builder/esvue/Dockerfile @@ -4,8 +4,7 @@ FROM node:20-alpine AS builder # # Prep and build Elasticvue RUN apk -U --no-cache add git && \ - # git clone https://github.com/cars10/elasticvue -b v1.0.4 /opt/src && \ - git clone https://github.com/t3chn0m4g3/elasticvue /opt/src && \ + git clone https://github.com/cars10/elasticvue -b v1.1.0 /opt/src && \ # We need to adjust consts.ts so the user has connection suggestion for reverse proxied ES sed -i "s#export const DEFAULT_CLUSTER_URI = 'http://localhost:9200'#export const DEFAULT_CLUSTER_URI = window.location.origin + '/es'#g" /opt/src/src/consts.ts && \ sed -i 's#href="/images/logo/favicon.ico"#href="images/logo/favicon.ico"#g' /opt/src/index.html && \ diff --git a/docker/nginx/dist/conf/lsweb.conf b/docker/nginx/dist/conf/lsweb.conf index 872774b8..f91e0c15 100644 --- a/docker/nginx/dist/conf/lsweb.conf +++ b/docker/nginx/dist/conf/lsweb.conf @@ -7,7 +7,8 @@ server { ######################### ### Basic server settings ######################### - listen 64294 ssl http2; + listen 64294 ssl; + http2 on; index index.html; ssl_protocols TLSv1.3; server_name example.com; diff --git a/docker/nginx/dist/conf/tpotweb.conf b/docker/nginx/dist/conf/tpotweb.conf index 7c8900bd..2553fe2d 100644 --- a/docker/nginx/dist/conf/tpotweb.conf +++ b/docker/nginx/dist/conf/tpotweb.conf @@ -7,7 +7,8 @@ server { ######################### ### Basic server settings ######################### - listen 64297 ssl http2; + listen 64297 ssl; + http2 on; index index.html; ssl_protocols TLSv1.3; server_name example.com; diff --git a/docker/nginx/dist/html/cyberchef/cyberchef.tgz b/docker/nginx/dist/html/cyberchef/cyberchef.tgz index 9e16a539..5b6980e0 100644 Binary files a/docker/nginx/dist/html/cyberchef/cyberchef.tgz and b/docker/nginx/dist/html/cyberchef/cyberchef.tgz differ diff --git a/docker/nginx/dist/html/esvue/esvue.tgz b/docker/nginx/dist/html/esvue/esvue.tgz index fd831e2a..726d50d4 100644 Binary files a/docker/nginx/dist/html/esvue/esvue.tgz and b/docker/nginx/dist/html/esvue/esvue.tgz differ