Compare commits
1 Commits
delete_fil
...
delete_fil
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fc5d91abf0 |
@@ -1,61 +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: MickLesk (CanbiZ)
|
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
|
||||||
# Source: https://github.com/qdm12/gluetun
|
|
||||||
|
|
||||||
APP="Gluetun"
|
|
||||||
var_tags="${var_tags:-vpn;wireguard;openvpn}"
|
|
||||||
var_cpu="${var_cpu:-2}"
|
|
||||||
var_ram="${var_ram:-2048}"
|
|
||||||
var_disk="${var_disk:-8}"
|
|
||||||
var_os="${var_os:-debian}"
|
|
||||||
var_version="${var_version:-13}"
|
|
||||||
var_unprivileged="${var_unprivileged:-1}"
|
|
||||||
var_tun="${var_tun:-yes}"
|
|
||||||
|
|
||||||
header_info "$APP"
|
|
||||||
variables
|
|
||||||
color
|
|
||||||
catch_errors
|
|
||||||
|
|
||||||
function update_script() {
|
|
||||||
header_info
|
|
||||||
check_container_storage
|
|
||||||
check_container_resources
|
|
||||||
|
|
||||||
if [[ ! -f /usr/local/bin/gluetun ]]; then
|
|
||||||
msg_error "No ${APP} Installation Found!"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
if check_for_gh_release "gluetun" "qdm12/gluetun"; then
|
|
||||||
msg_info "Stopping Service"
|
|
||||||
systemctl stop gluetun
|
|
||||||
msg_ok "Stopped Service"
|
|
||||||
|
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "gluetun" "qdm12/gluetun" "tarball"
|
|
||||||
|
|
||||||
msg_info "Building Gluetun"
|
|
||||||
cd /opt/gluetun
|
|
||||||
$STD go mod download
|
|
||||||
CGO_ENABLED=0 $STD go build -trimpath -ldflags="-s -w" -o /usr/local/bin/gluetun ./cmd/gluetun/
|
|
||||||
msg_ok "Built Gluetun"
|
|
||||||
|
|
||||||
msg_info "Starting Service"
|
|
||||||
systemctl start gluetun
|
|
||||||
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}:8000${CL}"
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
|
||||||
# Author: MickLesk (CanbiZ)
|
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
|
||||||
# Source: https://github.com/qdm12/gluetun
|
|
||||||
|
|
||||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
||||||
color
|
|
||||||
verb_ip6
|
|
||||||
catch_errors
|
|
||||||
setting_up_container
|
|
||||||
network_check
|
|
||||||
update_os
|
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
|
||||||
$STD apt install -y \
|
|
||||||
openvpn \
|
|
||||||
wireguard-tools \
|
|
||||||
iptables
|
|
||||||
msg_ok "Installed Dependencies"
|
|
||||||
|
|
||||||
msg_info "Configuring iptables"
|
|
||||||
$STD update-alternatives --set iptables /usr/sbin/iptables-legacy
|
|
||||||
$STD update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
|
|
||||||
ln -sf /usr/sbin/openvpn /usr/sbin/openvpn2.6
|
|
||||||
msg_ok "Configured iptables"
|
|
||||||
|
|
||||||
setup_go
|
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "gluetun" "qdm12/gluetun" "tarball"
|
|
||||||
|
|
||||||
msg_info "Building Gluetun"
|
|
||||||
cd /opt/gluetun
|
|
||||||
$STD go mod download
|
|
||||||
CGO_ENABLED=0 $STD go build -trimpath -ldflags="-s -w" -o /usr/local/bin/gluetun ./cmd/gluetun/
|
|
||||||
msg_ok "Built Gluetun"
|
|
||||||
|
|
||||||
msg_info "Configuring Gluetun"
|
|
||||||
mkdir -p /opt/gluetun-data
|
|
||||||
touch /etc/alpine-release
|
|
||||||
ln -sf /opt/gluetun-data /gluetun
|
|
||||||
cat <<EOF >/opt/gluetun-data/.env
|
|
||||||
VPN_SERVICE_PROVIDER=custom
|
|
||||||
VPN_TYPE=openvpn
|
|
||||||
OPENVPN_CUSTOM_CONFIG=/opt/gluetun-data/custom.ovpn
|
|
||||||
OPENVPN_USER=
|
|
||||||
OPENVPN_PASSWORD=
|
|
||||||
HTTP_CONTROL_SERVER_ADDRESS=:8000
|
|
||||||
HTTPPROXY=off
|
|
||||||
SHADOWSOCKS=off
|
|
||||||
PPROF_ENABLED=no
|
|
||||||
PPROF_BLOCK_PROFILE_RATE=0
|
|
||||||
PPROF_MUTEX_PROFILE_RATE=0
|
|
||||||
PPROF_HTTP_SERVER_ADDRESS=:6060
|
|
||||||
FIREWALL_ENABLED_DISABLING_IT_SHOOTS_YOU_IN_YOUR_FOOT=on
|
|
||||||
HEALTH_SERVER_ADDRESS=127.0.0.1:9999
|
|
||||||
DNS_UPSTREAM_RESOLVERS=cloudflare
|
|
||||||
LOG_LEVEL=info
|
|
||||||
STORAGE_FILEPATH=/gluetun/servers.json
|
|
||||||
PUBLICIP_FILE=/gluetun/ip
|
|
||||||
VPN_PORT_FORWARDING_STATUS_FILE=/gluetun/forwarded_port
|
|
||||||
TZ=UTC
|
|
||||||
EOF
|
|
||||||
msg_ok "Configured Gluetun"
|
|
||||||
|
|
||||||
msg_info "Creating Service"
|
|
||||||
cat <<EOF >/etc/systemd/system/gluetun.service
|
|
||||||
[Unit]
|
|
||||||
Description=Gluetun VPN Client
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
User=root
|
|
||||||
WorkingDirectory=/opt/gluetun-data
|
|
||||||
EnvironmentFile=/opt/gluetun-data/.env
|
|
||||||
UnsetEnvironment=USER
|
|
||||||
ExecStart=/usr/local/bin/gluetun
|
|
||||||
Restart=on-failure
|
|
||||||
RestartSec=5
|
|
||||||
AmbientCapabilities=CAP_NET_ADMIN
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
EOF
|
|
||||||
systemctl enable -q --now gluetun
|
|
||||||
msg_ok "Created Service"
|
|
||||||
|
|
||||||
motd_ssh
|
|
||||||
customize
|
|
||||||
cleanup_lxc
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Gluetun",
|
|
||||||
"slug": "gluetun",
|
|
||||||
"categories": [
|
|
||||||
4
|
|
||||||
],
|
|
||||||
"date_created": "2026-03-10",
|
|
||||||
"type": "ct",
|
|
||||||
"updateable": true,
|
|
||||||
"privileged": false,
|
|
||||||
"interface_port": 8000,
|
|
||||||
"documentation": "https://github.com/qdm12/gluetun-wiki",
|
|
||||||
"config_path": "/opt/gluetun-data/.env",
|
|
||||||
"website": "https://github.com/qdm12/gluetun",
|
|
||||||
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/gluetun.webp",
|
|
||||||
"description": "Gluetun is a lightweight VPN client supporting multiple providers (Mullvad, NordVPN, PIA, ProtonVPN, Surfshark, etc.) with OpenVPN and WireGuard, built-in DNS over TLS, firewall kill switch, HTTP proxy, and Shadowsocks proxy.",
|
|
||||||
"install_methods": [
|
|
||||||
{
|
|
||||||
"type": "default",
|
|
||||||
"script": "ct/gluetun.sh",
|
|
||||||
"resources": {
|
|
||||||
"cpu": 2,
|
|
||||||
"ram": 2048,
|
|
||||||
"hdd": 8,
|
|
||||||
"os": "Debian",
|
|
||||||
"version": "13"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"default_credentials": {
|
|
||||||
"username": null,
|
|
||||||
"password": null
|
|
||||||
},
|
|
||||||
"notes": [
|
|
||||||
{
|
|
||||||
"text": "You must configure your VPN provider credentials in /opt/gluetun-data/.env before the service will connect",
|
|
||||||
"type": "warning"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"text": "TUN device support is required and enabled by default during container creation",
|
|
||||||
"type": "info"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"text": "Port 8000 provides the HTTP control server API",
|
|
||||||
"type": "info"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"text": "Supports 30+ VPN providers - see https://github.com/qdm12/gluetun-wiki for provider-specific setup",
|
|
||||||
"type": "info"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user