Loading README.md +2 −2 Original line number Diff line number Diff line Loading @@ -7,9 +7,9 @@ LDAP authentication webserver to use with Nginx' auth\_request. ## Configuration All of the configuration should be done with environment variables. For the complete list see <https://flask-simpleldap.readthedocs.io/en/latest/#configuration> complete list see <https://github.com/drowolath/flask-ldap-auth#usage> and <https://flask.palletsprojects.com/en/1.1.x/config/#configuring-from-environment-variables>. <https://flask.palletsprojects.com/en/1.1.x/config/#builtin-configuration-values>. ## License Loading app.py +2 −2 Original line number Diff line number Diff line Loading @@ -2,8 +2,8 @@ # pylint: disable=import-error import os from flask import Flask, token from flask_ldap_auth import login_required from flask import Flask from flask_ldap_auth import login_required, token app = Flask(__name__) app.config["SECRET_KEY"] = os.getenv("SECRET_KEY", os.urandom(16)) Loading Loading
README.md +2 −2 Original line number Diff line number Diff line Loading @@ -7,9 +7,9 @@ LDAP authentication webserver to use with Nginx' auth\_request. ## Configuration All of the configuration should be done with environment variables. For the complete list see <https://flask-simpleldap.readthedocs.io/en/latest/#configuration> complete list see <https://github.com/drowolath/flask-ldap-auth#usage> and <https://flask.palletsprojects.com/en/1.1.x/config/#configuring-from-environment-variables>. <https://flask.palletsprojects.com/en/1.1.x/config/#builtin-configuration-values>. ## License Loading
app.py +2 −2 Original line number Diff line number Diff line Loading @@ -2,8 +2,8 @@ # pylint: disable=import-error import os from flask import Flask, token from flask_ldap_auth import login_required from flask import Flask from flask_ldap_auth import login_required, token app = Flask(__name__) app.config["SECRET_KEY"] = os.getenv("SECRET_KEY", os.urandom(16)) Loading