Compare commits

...

39 Commits

Author SHA1 Message Date
CanbiZ
2fe2569e4c
Merge pull request #1174 from luismco/byparr
Byparr
2025-12-03 11:18:49 +01:00
Luís Oliveira
8f36211011
Update byparr.sh 2025-12-02 13:15:46 +00:00
Luís Oliveira
d98f8ccc9a
Update byparr-install.sh 2025-12-02 13:13:10 +00:00
Tobias
055cdfed7d
reorder 2025-12-02 13:52:22 +01:00
Tobias
7e5acbec21
reorder 2025-12-02 13:49:58 +01:00
Tobias
82290f7cc0
update: image url 2025-12-02 13:49:11 +01:00
Luís Oliveira
7661c3ee91
Merge branch 'community-scripts:main' into byparr 2025-12-02 12:39:35 +00:00
Luís Oliveira
b128fe4312 Changed build and install calls 2025-12-02 12:37:57 +00:00
Luís Oliveira
98105f0ea3
Update byparr.json 2025-12-02 11:21:34 +00:00
Luís Oliveira
472fca909c
Update byparr.json 2025-12-02 11:20:49 +00:00
Luís Oliveira
3bbc5f7dd4
Merge branch 'community-scripts:main' into byparr 2025-12-02 11:13:21 +00:00
Luís Oliveira
95c0fc2129 Merge branch 'byparr' of https://github.com/luismco/ProxmoxVED into byparr 2025-12-02 11:12:31 +00:00
Luís Oliveira
af75968ca7 removed debugging step 2025-12-02 11:11:48 +00:00
Luís Oliveira
968392111a removed cleanup_lxc due to error 2025-12-02 11:11:48 +00:00
Luís Oliveira
734ce99aea Added sync command 2025-12-02 11:11:48 +00:00
Luís Oliveira
7a13a5c5aa Added install and ct files 2025-12-02 11:11:48 +00:00
Luís Oliveira
705b0b3ed2
Update byparr-install.sh 2025-11-24 17:13:31 +00:00
Luís Oliveira
f807f399ac
Update byparr.sh 2025-11-24 16:58:53 +00:00
Luís Oliveira
531a30d8ab
Create byparr.json 2025-11-24 16:57:29 +00:00
Luís Oliveira
68bad5b2bb
Update byparr-install.sh 2025-11-24 16:49:52 +00:00
Luís Oliveira
da81176477
Update byparr-install.sh 2025-11-24 16:38:28 +00:00
Luís Oliveira
354932e2b3
Update byparr.sh 2025-11-24 16:36:30 +00:00
Luís Oliveira
4af8521643
Update byparr-install.sh 2025-11-24 16:04:03 +00:00
Luís Oliveira
64b2d3eca3
Merge branch 'community-scripts:main' into byparr 2025-11-24 16:02:33 +00:00
bluisholive
1fe7756188 Merge branch 'byparr' of https://github.com/luismco/ProxmoxVED into byparr 2025-11-19 12:40:06 +00:00
bluisholive
1d9258004d added dependencies 2025-11-19 12:39:23 +00:00
bluisholive
5fa8d783fc added libasound2 2025-11-19 12:39:23 +00:00
bluisholive
99dfd7d1d1 added chromium-common 2025-11-19 12:39:22 +00:00
Luís Oliveira
5ec4b6ff84 removed debugging step 2025-11-19 12:39:22 +00:00
Luís Oliveira
a7dbe05d6d removed cleanup_lxc due to error 2025-11-19 12:39:22 +00:00
Luís Oliveira
ee824f2d54 Added sync command 2025-11-19 12:39:22 +00:00
Luís Oliveira
773e250193 Added install and ct files 2025-11-19 12:39:22 +00:00
bluisholive
a67dd2a425 added dependencies 2025-11-19 11:51:48 +00:00
bluisholive
73d5f5afec added libasound2 2025-11-19 10:55:58 +00:00
bluisholive
38faeee12e added chromium-common 2025-11-19 10:41:29 +00:00
Luís Oliveira
6cc46f7e60 removed debugging step 2025-11-14 09:32:16 +00:00
Luís Oliveira
f4298e3df3 removed cleanup_lxc due to error 2025-11-14 09:24:31 +00:00
Luís Oliveira
34e6ebde3c Added sync command 2025-11-14 09:10:22 +00:00
Luís Oliveira
1b85649057 Added install and ct files 2025-11-14 08:34:29 +00:00
3 changed files with 138 additions and 0 deletions

53
ct/byparr.sh Normal file
View File

@ -0,0 +1,53 @@
#!/usr/bin/env bash
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2025 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"
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}"

View File

@ -0,0 +1,35 @@
{
"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@master/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": []
}

50
install/byparr-install.sh Normal file
View File

@ -0,0 +1,50 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2025 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 <<EOF >/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