Skip to content

Commit 0af40d3

Browse files
Merge branch 'master' into typing
2 parents 4ee45ca + 8c7bb10 commit 0af40d3

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

scripts/pa_install_webapp_letsencrypt_ssl.py

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,23 @@ def main(domain_name, suppress_reload):
4343
webapp.reload()
4444

4545
ssl_details = webapp.get_ssl_info()
46-
print(snakesay(
47-
"That's all set up now :-)\n"
48-
"Your new certificate will expire on {expiry:%d %B %Y},\n"
49-
"so shortly before then you should renew it\n"
50-
"(see https://help.pythonanywhere.com/pages/LetsEncrypt/)\n"
51-
"and install the new certificate.".format(
52-
expiry=ssl_details["not_after"]
46+
print(
47+
snakesay(
48+
"This method of handling Let's Encrypt certs\n"
49+
"**************IS DEPRECATED.**************\n\n"
50+
"You can now have a Let's Encrypt certificate managed by PythonAnywhere.\n"
51+
"We handle all the details of getting it, installing it,\n"
52+
"and managing renewals for you. So you don't need to do\n"
53+
"any of the stuff below any more.\n\n"
54+
"Anyway, All is set up for now. \n"
55+
"Your new certificate will expire on {expiry:%d %B %Y},\n"
56+
"so shortly before then you should switch to the new system\n"
57+
"(see https://help.pythonanywhere.com/pages/HTTPSSetup/)\n"
58+
"".format(
59+
expiry=ssl_details["not_after"]
60+
)
5361
)
54-
))
55-
62+
)
5663

5764
done = True
5865
break

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='pythonanywhere',
12-
version='0.8.2',
12+
version='0.8.3',
1313
description='PythonAnywhere helper tools for users',
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)