diff --git a/ct/byparr.sh b/ct/byparr.sh deleted file mode 100644 index 62104bb11..000000000 --- a/ct/byparr.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) -# Copyright (c) 2021-2026 community-scripts ORG -# Author: luismco -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/ThePhaseless/Byparr - -APP="Byparr" -var_tags="${var_tags:-proxy}" -var_cpu="${var_cpu:-2}" -var_ram="${var_ram:-2048}" -var_disk="${var_disk:-4}" -var_os="${var_os:-debian}" -var_version="${var_version:-13}" -var_unprivileged="${var_unprivileged:-1}" - -header_info "$APP" -variables -color -catch_errors - -function update_script() { - header_info - check_container_storage - check_container_resources - if [[ ! -d /opt/Byparr ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - - if check_for_gh_release "Byparr" "ThePhaseless/Byparr"; then - msg_info "Stopping Service" - systemctl stop byparr - msg_ok "Stopped Service" - - CLEAN_INSTALL=1 fetch_and_deploy_gh_release "Byparr" "ThePhaseless/Byparr" - - msg_info "Starting Service" - systemctl start byparr - msg_ok "Started Service" - msg_ok "Updated successfully!" - fi - exit -} - -start -build_container -description - -msg_ok "Completed successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" -echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8191${CL}" diff --git a/ct/headers/byparr b/ct/headers/byparr deleted file mode 100644 index 0a6f89eca..000000000 --- a/ct/headers/byparr +++ /dev/null @@ -1,6 +0,0 @@ - ____ - / __ )__ ______ ____ ___________ - / __ / / / / __ \/ __ `/ ___/ ___/ - / /_/ / /_/ / /_/ / /_/ / / / / -/_____/\__, / .___/\__,_/_/ /_/ - /____/_/ diff --git a/frontend/public/json/byparr.json b/frontend/public/json/byparr.json deleted file mode 100644 index fb572c4f7..000000000 --- a/frontend/public/json/byparr.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "Byparr", - "slug": "byparr", - "categories": [ - 14 - ], - "date_created": "2025-12-02", - "type": "ct", - "updateable": true, - "privileged": false, - "interface_port": 8191, - "documentation": "https://github.com/ThePhaseless/Byparr/blob/master/README.md", - "website": "https://github.com/ThePhaseless/Byparr", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/byparr.webp", - "config_path": "", - "description": "Byparr is a proxy server to bypass Cloudflare and DDoS-GUARD protection.", - "install_methods": [ - { - "type": "default", - "script": "ct/byparr.sh", - "resources": { - "cpu": 2, - "ram": 2048, - "hdd": 4, - "os": "debian", - "version": "13" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [] -} diff --git a/install/byparr-install.sh b/install/byparr-install.sh deleted file mode 100644 index 1616b9551..000000000 --- a/install/byparr-install.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 community-scripts ORG -# Author: luismco -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/ThePhaseless/Byparr - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -msg_info "Installing Dependencies" -$STD apt -y install \ - xauth \ - xvfb \ - scrot \ - chromium \ - chromium-driver \ - ca-certificates -msg_ok "Installed Dependencies" - -fetch_and_deploy_gh_release "Byparr" "ThePhaseless/Byparr" -setup_uv - -msg_info "Creating Service" -cat </etc/systemd/system/byparr.service -[Unit] -Description=Byparr -After=network.target - -[Service] -Type=simple -WorkingDirectory=/opt/Byparr -ExecStart=/usr/local/bin/uv run python3 main.py -Restart=on-failure -RestartSec=10 - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now byparr -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc