From 8f984349ea4a7a122360cb56fcdbb99f547a69f8 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Mon, 18 May 2026 15:56:01 +0200 Subject: [PATCH] Modify author info and remove SSL certificate creation Updated author information in the script and removed self-signed certificate generation. --- install/espconnect-install.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/install/espconnect-install.sh b/install/espconnect-install.sh index 3bad5450d..e57bbe7eb 100644 --- a/install/espconnect-install.sh +++ b/install/espconnect-install.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG -# Author: John Lombardo +# Author: John Lombardo (programbo) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # Source: https://github.com/thelastoutpostworkshop/ESPConnect @@ -18,14 +18,10 @@ $STD apt install -y nginx msg_ok "Installed Dependencies" fetch_and_deploy_gh_release "espconnect" "thelastoutpostworkshop/ESPConnect" "prebuild" "latest" "/opt/espconnect" "dist.zip" +create_self_signed_cert msg_info "Configuring Nginx" mkdir -p /etc/ssl/private -$STD openssl req -x509 -nodes -newkey rsa:2048 -days 3650 \ - -keyout /etc/ssl/private/espconnect-selfsigned.key \ - -out /etc/ssl/certs/espconnect-selfsigned.crt \ - -subj "/CN=ESPConnect" - cat <<'EOF' >/etc/nginx/sites-available/espconnect server { listen 80 default_server;