mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-16 10:59:53 +02:00
14 lines
341 B
Python
14 lines
341 B
Python
|
from mailu import db, models
|
||
|
from mailu.internal import internal, nginx
|
||
|
|
||
|
import flask
|
||
|
|
||
|
|
||
|
@internal.route("/nginx")
|
||
|
def nginx_authentication():
|
||
|
headers = nginx.handle_authentication(flask.request.headers)
|
||
|
response = flask.Response()
|
||
|
for key, value in headers.items():
|
||
|
response.headers[key] = str(value)
|
||
|
return response
|