Hello there !
Firstly, be gentle about my English level because i’m French and i try to do my best !
So,
I try to install & configure Certbot for Encrypt one of my Web Application…
The server be a Debian 8 (Jessie) with Apache2 & PHP 7.0.
I must use a Proxy for Web request and i think that give me an issue at the installation !
Apache2 has the required “rewrite_module” & “ssl_module” activates.
I get the certbot script with the following command :
[code]
wget https://dl.eff.org/certbot-auto
chmod a+x certbot-auto
[/code]
But when i launch “.\certbot-auto”, i meet an error :
[code]
[...]
Paramétrage de python3-virtualenv (1.11.6+ds-1) ...
Paramétrage de virtualenv (1.11.6+ds-1) ...
Traitement des actions différées (« triggers ») pour libc-bin (2.19-18+deb8u10) ...
WARNING: unable to check for updates.
Creating virtual environment...
Installing Python packages...
Traceback (most recent call last):
File "/tmp/tmp.TfnQuw0IV2/pipstrap.py", line 177, in <module>
sys.exit(main())
File "/tmp/tmp.TfnQuw0IV2/pipstrap.py", line 158, in main
for path, digest in PACKAGES]
File "/tmp/tmp.TfnQuw0IV2/pipstrap.py", line 117, in hashed_download
response = opener(using_https=parsed_url.scheme == 'https').open(url)
File "/usr/lib/python2.7/urllib2.py", line 431, in open
response = self._open(req, data)
File "/usr/lib/python2.7/urllib2.py", line 449, in _open
'_open', req)
File "/usr/lib/python2.7/urllib2.py", line 409, in _call_chain
result = func(*args)
File "/usr/lib/python2.7/urllib2.py", line 1240, in https_open
context=self._context)
File "/usr/lib/python2.7/urllib2.py", line 1197, in do_open
raise URLError(err)
urllib2.URLError: <urlopen error [Errno 101] Network is unreachable>
[/code]
I’ve try to configure my Proxy into the “urllib2.py” file but without success …
And i need help to understand what’s wrong with my installation … !
Thanks for your attention =)