Browse Source

fixing subdomain redirection in Flask

joel
Simon Bowie 2 years ago
parent
commit
cb027b0171
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      web/app/__init__.py

+ 2
- 1
web/app/__init__.py View File

moment = Moment() moment = Moment()


def create_app(): 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 # get config variables from OS environment variables: set in env file passed through Docker Compose
app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY') app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY')

Loading…
Cancel
Save