Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyprox_tcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@



listen_PORT = 2500 # pyprox listening to 127.0.0.1:listen_PORT
# get listening port from environment if set
listen_PORT = int(os.getenv('LISTEN_PORT', 2500)) # pyprox listening to 127.0.0.1:listen_PORT

Cloudflare_IP = '162.159.135.42' # plos.org (can be any dirty cloudflare ip)
Cloudflare_port = 443
Expand Down
3 changes: 2 additions & 1 deletion pyprox_tcp_randchunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@



listen_PORT = 2500 # pyprox listening to 127.0.0.1:listen_PORT
# get listening port from environment if set
listen_PORT = int(os.getenv('LISTEN_PORT', 2500)) # pyprox listening to 127.0.0.1:listen_PORT

Cloudflare_IP = '162.159.135.42' # plos.org (can be any dirty cloudflare ip)
# Cloudflare_IP = '162.159.36.93' #
Expand Down