Explorar el Código

Added MariaDB config for production use

joel
Simon Bowie hace 3 años
padre
commit
96df4161e1
Se han modificado 3 ficheros con 4 adiciones y 2 borrados
  1. +1
    -1
      nginx-conf/toolkit.conf
  2. +2
    -1
      web/app/__init__.py
  3. +1
    -0
      web/requirements.txt

+ 1
- 1
nginx-conf/toolkit.conf Ver fichero

@@ -9,7 +9,7 @@ server {
location / {
proxy_pass http://toolkit;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header Host $http_host;
proxy_redirect off;
}


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

@@ -26,7 +26,8 @@ def create_app():
# 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['SQLALCHEMY_DATABASE_URI'] = os.environ.get('DATABASE_URL')
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = 'False'
app.config['SQLALCHEMY_ECHO'] = False
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False

db.init_app(app)


+ 1
- 0
web/requirements.txt Ver fichero

@@ -3,3 +3,4 @@ flask-sqlalchemy
flask-login
flask-moment
gunicorn
pymysql

Cargando…
Cancelar
Guardar