Initial release — MTProxyMax v1.0.0

This commit is contained in:
SamNet-dev
2026-02-17 01:06:48 -06:00
commit 5ee6e0fdf9
5 changed files with 5864 additions and 0 deletions

7
install.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
# MTProxyMax Quick Installer — SamNet Technologies
# Usage: curl -sL https://raw.githubusercontent.com/SamNet-dev/MTProxyMax/main/install.sh | sudo bash
set -e
SCRIPT_URL="https://raw.githubusercontent.com/SamNet-dev/MTProxyMax/main/mtproxymax.sh"
if [ "$(id -u)" -ne 0 ]; then echo "Run as root: curl -sL $SCRIPT_URL | sudo bash" >&2; exit 1; fi
curl -fsSL "$SCRIPT_URL" -o /tmp/mtproxymax.sh && bash /tmp/mtproxymax.sh install && rm -f /tmp/mtproxymax.sh