Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Proxy via config.py. #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@
# The web location prefix of the docs and CSS, relative to check.cgi
DOCSURL='docs'
CSSURL='css'

# Enable, if you are behind a Proxy...
#os.environ['HTTP_PROXY'] = os.environ['http_proxy'] = 'http://corporate-proxy:8005'
#os.environ['HTTPS_PROXY'] = os.environ['https_proxy'] = 'http://corporate-proxy:8005'
#os.environ['NO_PROXY'] = os.environ['no_proxy'] = '127.0.0.1,localhost' # Do not use Pipes or Asterisks!