A quic-based proxy protocol implementation
209
Juicity is an open-source proxy protocol designed to provide a high-performance, QUIC-based networking solution.
As a protocol based on QUIC (Quick UDP Internet Connections), Juicity shares a similar foundation with other popular modern proxy tools like Hysteria and TUIC. By leveraging the performance benefits of QUIC, it is designed to facilitate fast and secure network communication.
ENTRYPOINT ["/usr/bin/juicity-client"]
CMD ["run", "-c", "/etc/juicity/config.json"]
docker run --name juicity\
--restart always \
--network host \
-v /path/to/config.json:/etc/juicity/config.json \
-d edalia/juicity-client:latest
{
"listen": ":1080",
"server": "<ip or domain>:<port>",
"uuid": "00000000-0000-0000-0000-000000000000",
"password": "my_password",
"sni": "www.example.com",
"allow_insecure": false,
"congestion_control": "bbr",
"log_level": "info"
}
See the official documentation for more detailed configuration options.
Content type
Image
Digest
sha256:0a6585c71…
Size
8.5 MB
Last updated
3 months ago
docker pull edalia/juicity-client