unbreak mangasee...
fix response header popping
easier to use signature
I wanted an HTTP(S) proxy on Google App Engine, because apparently you can get rotating IPs for outgoing traffic automatically. Well it doesn't really rotate but actually just not guaranteed to stay stay static. Worth a try anyway.
Originally wanted to implement a proper generic proxy but gave up fast because while plain HTTP is easy, HTTPS requires actual tcp tunnelling which I'm not really up for at the moment (is that even possible on GAE standard evironment?).
So I devised my own "scheme". Dumbest thing that works right?
Create an envars.yaml
file to store secret password:
env_variables:
GAEPROXY_KEY: "long long string"
Then just gcloud app deploy
.
See comments in app.py.