FastAPI - Middleware and Hooks
In this FastAPI app, what will happen if a request is made from host 'unauthorized.com'?
```python
from fastapi import FastAPI
from starlette.middleware.trustedhost import TrustedHostMiddleware
app = FastAPI()
app.add_middleware(TrustedHostMiddleware, allowed_hosts=['myapp.com', 'localhost'])
```
