Get rid of complicated prefix logic. Further simplify /static handling and nginx config.
parent
da788ddee3
commit
fb0f005343
@ -1,5 +1,5 @@
|
||||
from flask import Blueprint
|
||||
|
||||
sso = Blueprint('sso', __name__, template_folder='templates')
|
||||
sso = Blueprint('sso', __name__, static_folder='None' ,template_folder='templates')
|
||||
|
||||
from mailu.sso.views import *
|
||||
|
@ -1,6 +1,6 @@
|
||||
from flask import Blueprint
|
||||
|
||||
|
||||
ui = Blueprint('ui', __name__, static_folder='static', template_folder='templates')
|
||||
ui = Blueprint('ui', __name__, static_folder='None', template_folder='templates')
|
||||
|
||||
from mailu.ui.views import *
|
||||
|
Loading…
Reference in New Issue