Quellcode durchsuchen

Added MariaDB config for production use

joel
Simon Bowie vor 3 Jahren
Ursprung
Commit
96df4161e1
3 geänderte Dateien mit 4 neuen und 2 gelöschten Zeilen
  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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

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

Laden…
Abbrechen
Speichern