Explorar el Código

fixing subdomain redirection in Flask

joel
Simon Bowie hace 2 años
padre
commit
cb027b0171
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      web/app/__init__.py

+ 2
- 1
web/app/__init__.py Ver fichero

@@ -20,7 +20,8 @@ db = SQLAlchemy()
moment = Moment()

def create_app():
app = Flask(__name__)
app = Flask(__name__, subdomain_matching=True)
app.config['SERVER_NAME'] = os.environ.get('SERVER_NAME')

# get config variables from OS environment variables: set in env file passed through Docker Compose
app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY')

Cargando…
Cancelar
Guardar