Skip to content

Commit

Permalink
Add letsencrypt ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyguitar committed Jul 16, 2016
1 parent 706ea0d commit d07c3fd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ def index_redirection():
"""Redirecting index file"""
return send_from_directory(ROOT, 'index.html')

@app.route('/.well-known/acme-challenge/39LkboWlzrvSn4bGSC-vx5Ea4FqKipU5QYcLKAn1hSM')
def letsencrypt():
return "39LkboWlzrvSn4bGSC-vx5Ea4FqKipU5QYcLKAn1hSM.1MQ2tN97oDMCS6VnIiDMXAjUQwpiEoyNT2mUiGLhR7o"

if __name__ == "__main__":
app.run(debug=True)

0 comments on commit d07c3fd

Please sign in to comment.