check-http/server.py
Laurent Peuch de00bfed5c init
2019-01-19 07:25:23 +01:00

13 lines
392 B
Python

from sanic import Sanic
from sanic.response import html
app = Sanic()
@app.route("/")
async def test(request):
return html("You aren't really supposed to use this website using your browser.<br><br>It's a small server to check if a YunoHost instance can be reached by http before trying to instal a LE certificate.")
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7000)