ru

VPS для личного прокси: SOCKS5 и HTTP без блэклистов

Коммерческие прокси-сервисы включены в большинство блэклистов. Личный прокси на offshore VPS с уникальным IP-адресом работает там, где коммерческие прокси блокируются. Настройка SOCKS5 через SSH занимает 5 минут.

Need this done for your project?

We implement, you ship. Async, documented, done in days.

Start a Brief

SOCKS5 прокси через SSH (5 минут)

# Метод 1: SSH Dynamic Port Forwarding (встроенный SOCKS5)
# Не требует ничего устанавливать на сервере
ssh -D 1080 -N -q user@your-vps-ip

# Теперь localhost:1080 - SOCKS5 прокси через ваш VPS
# Настройте браузер: SOCKS5 127.0.0.1:1080

# Метод 2: 3proxy (постоянный SOCKS5 сервер)
apt install -y 3proxy

cat > /etc/3proxy/3proxy.cfg << 'EOF'
nserver 1.1.1.1
auth strong
users admin:CL:yourpassword
allow admin
socks -p1080
EOF

systemctl enable 3proxy
systemctl start 3proxy

Squid HTTP Proxy с аутентификацией

# Установка Squid
apt install -y squid apache2-utils

# Создание пользователя
htpasswd -c /etc/squid/passwords admin

# /etc/squid/squid.conf
http_port 3128
auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/passwords
acl authenticated proxy_auth REQUIRED
http_access allow authenticated
http_access deny all

systemctl restart squid

# Тест
curl -x http://admin:pass@your-vps-ip:3128 https://httpbin.org/ip

Why Anubiz Host

100% async — no calls, no meetings
Delivered in days, not weeks
Full documentation included
Production-grade from day one
Security-first approach
Post-delivery support included

Ready to get started?

Skip the research. Tell us what you need, and we'll scope it, implement it, and hand it back — fully documented and production-ready.

Anubiz Chat AI

Online