sanic/examples/vhosts.py
2017-05-15 18:44:59 +09:00

41 lines
914 B
Python

from sanic.response import text
from sanic import Sanic
from sanic.blueprints import Blueprint
# Usage
# curl -H "Host: example.com" localhost:8000
# curl -H "Host: sub.example.com" localhost:8000
# curl -H "Host: bp.example.com" localhost:8000/question
# curl -H "Host: bp.example.com" localhost:8000/answer
app = Sanic()
bp = Blueprint("bp", host="bp.example.com")
@app.route('/', host=["example.com",
"somethingelse.com",
"therestofyourdomains.com"])
async def hello1(request):
return text("Some defaults")
@app.route('/', host="sub.example.com")
async def hello2(request):
return text("42")
@bp.route("/question")
async def hello3(request):
return text("What is the meaning of life?")
@bp.route("/answer")
async def hello4(request):
return text("42")
app.blueprint(bp)
if __name__ == '__main__':
app.run(host="127.0.0.1", port=8000)