Различные скрипты для VPN на основе протокола Vless
Устанавливает и настраивает Hysteria2 автоматически, находится на разработке и может выполняться с ошибками
В результате работы генерирует /root/hysteria2.txt файл с hy2:// ключом
bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/hysteria-install.sh)Установить/переустановить с другим SNI
bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/hysteria-install.sh) --custom-sni=example.comУстанавливает и настраивает Marzban полностью автоматически, находится на разработке и может выполняться с ошибками
С настройками по умолчанию:
bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/marzinstall.sh)Устанавливает и настраивает 3x-ui полностью автоматически.
С настройками по умолчанию:
bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/3xinstall.sh)Расширенную, с возможностью предустановить свои настройки и установки SelfSNI:
bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/3xinstall.sh) --extendСкачивает и устанавливает рандомный шаблонный сайт отсюда: https://github.com/learning-zone/website-templates
И получает на него Let's Encrypt сертификат и настраивает nginx под использовании сайта в качестве SNI для Vless Reality
bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/fakesite.sh)bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/fakesite.sh) --port 9443bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/fakesite.sh) --without-80Возвращает возможность пользоваться Marzban из вне как раньше без SSH туннеля, и позволяет опционаольно установить заглушку логина ISPManager.
bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/marzbanfix.sh)Автоматически настраивает 3x-ui панель на работу с 8080 портом, запустить скрипт можно с помощью следующей команды:
bash <(curl -Ls https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/3xuiportfix.sh)This guide provides step-by-step instructions for setting up the Marzban home template on a Debian-based system.
-
A Debian-based operating system.
-
wgetinstalled. If not, you can install it using the following commands:sudo apt-get update sudo apt-get install wget
First, you'll need to create the necessary directories for the Marzban home template.
Open your terminal and run the following command:
sudo mkdir -p /var/lib/marzban/templates/home/This command will create all the required directories in the path /var/lib/marzban/templates/home/.
Next, download the index.html template file from the GitHub repository and save it in the created directory.
Run the following command:
sudo wget https://raw.githubusercontent.com/YukiKras/vless-scripts/refs/heads/main/marzban-ispmgr/index.html -O /var/lib/marzban/templates/home/index.htmlThis command will download the index.html file and place it in the /var/lib/marzban/templates/home/ directory.
nano /opt/marzban/.envSet CUSTOM_TEMPLATES_DIRECTORY to "/var/lib/marzban/templates/"
CUSTOM_TEMPLATES_DIRECTORY="/var/lib/marzban/templates/"
Set HOME_PAGE_TEMPLATE to "home/index.html"
HOME_PAGE_TEMPLATE="home/index.html"
marzban restart