Simplerxy - Một proxy đơn giản dễ xài, thoát tục
Simplerxy - A simple, easy-to-use, lightweight proxy
Simplerxy - Một proxy đơn giản dễ xài, thoát tục được viết bằng Golang với sự giúp sức của Gemini. Nhu cầu chính của Simplerxy là giúp vượt lọc chặn dựa vào SNI/DPI của nhà mạng. Quan trọng: Simplerxy không chèn, làm sai lệch, cũng như không thu thập thông tin mã hóa HTTPS.
Nhưng mà, nếu mấy nhà mạng chặn dựa vào IP, chỉ còn các xài VPN hay proxy của nước ngoài.
Simplerxy - A simple, easy-to-use, lightweight proxy is written in Golang with the help from Gemini. The main purpose of Simplerxy simply helps to overcome the SNI/DPI filter of the carriers (ISPs). Important: Simplerxy does not insert, false, nor does not collect encryption information HTTPS.
However, if the ISPs blocks hard IPs, it is only possible to use VPN or proxy from abroad.
git clone https://github.com/Fyne5/Simplerxy.git
cd Simplerxy
go build -o Simplerxy main.go
Bởi tui đang xài MacOS Intel nên khi biên dịch cơ bản, nó sẽ chỉ cho MacOS Intel. Muốn từ MacOS Intel biên dịch cho hệ khác thì
Because I'm using MacOS Intel, when compiling basically, it will only be for MacOS Intel. If you want to compile from MacOS Intel to another system, then
GOOS=darwin GOARCH=amd64 go build -o Simplerxy-macos-amd64 main.go
GOOS=darwin GOARCH=arm64 go build -o Simplerxy-macos-arm64 main.go
GOOS=linux GOARCH=amd64 go build -o Simplerxy-linux-amd64 main.go
GOOS=linux GOARCH=arm64 go build -o Simplerxy-linux-arm64 main.go
GOOS=linux GOARCH=386 go build -o Simplerxy-linux-386 main.go
./Simplerxy
Khai báo trong proxy của hệ thống hoặc trình duyệt. Hay xài curl.
Declare in the proxy of the system or browser. Or use curl.
curl -I https://medium.com -x http://127.0.0.1:3979
HTTP/1.1 200 Connection established
HTTP/2 103
link: <https://glyph.medium.com/css/unbound.css>; as=style; rel=preload
Mặc định Simplerxy sẽ chạy ở cổng TCP 3979 (con số thần Tài trong Đề Số Học) và giao tiếp tại tất cả các địa chỉ (0.0.0.0). Có thể tùy chỉnh trong config.conf để cho phù hợp
By default Simplerxy will run at TCP 3979 (God of Fortune’s lucky number for lottery gamblers) and communicate at all addresses (0.0.0.0). Can be customized in config.conf to fit
Xem trong thư mục docker rồi kích chạy RUN.sh
Look in the docker folder and click RUN.sh
