sanic/examples/vhosts.py

33 lines
809 B
Python
Raw Permalink Normal View History

2017-01-08 15:48:12 -08:00
from sanic.response import text
from sanic import Sanic
2017-01-10 18:07:58 -08:00
from sanic.blueprints import Blueprint
2017-01-08 15:48:12 -08:00
# Usage
# curl -H "Host: example.com" localhost:8000
# curl -H "Host: sub.example.com" localhost:8000
2017-01-10 18:07:58 -08:00
# curl -H "Host: bp.example.com" localhost:8000/question
# curl -H "Host: bp.example.com" localhost:8000/answer
2017-01-08 15:48:12 -08:00
app = Sanic()
2017-01-10 18:07:58 -08:00
bp = Blueprint("bp", host="bp.example.com")
2017-01-08 15:48:12 -08:00
@app.route('/', host="example.com")
async def hello(request):
return text("Answer")
@app.route('/', host="sub.example.com")
async def hello(request):
return text("42")
2017-01-10 18:07:58 -08:00
@bp.route("/question")
async def hello(request):
return text("What is the meaning of life?")
@bp.route("/answer")
async def hello(request):
return text("42")
app.register_blueprint(bp)
2017-01-08 15:48:12 -08:00
if __name__ == '__main__':
app.run(host="0.0.0.0", port=8000)