Skip to content

Instantly share code, notes, and snippets.

@tmathmeyer
Created April 3, 2015 01:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmathmeyer/27e6c4ed89ef4873f555 to your computer and use it in GitHub Desktop.
Save tmathmeyer/27e6c4ed89ef4873f555 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route("/index.html")
def homepage():
return "Snoopy ISP - Ted Meyer"
app.run("0.0.0.0", 8080, ssl_context=("server.cert", "server.key"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment