mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 11:11:30 -04:00
The easiest way to set up the probe server behind a symmetric NAT is to deploy it as a Docker container and alter the iptables rules for the Docker network subnet that the container runs in.
11 lines
398 B
YAML
11 lines
398 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
snowflake-probetest:
|
|
build: .
|
|
container_name: snowflake-probetest
|
|
ports:
|
|
- "8443:8443"
|
|
volumes:
|
|
- /home/snowflake-broker/acme-cert-cache:/go/bin/acme-cert-cache
|
|
entrypoint: [ "probetest" , "-addr", ":8443" , "-acme-hostnames", $HOSTNAMES, "-acme-email", $EMAIL, "-acme-cert-cache", "/go/bin/acme-cert-cache"]
|