mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 19:42:20 +00:00
Fix configuration variable handling
This commit is contained in:
parent
7fd4396624
commit
92b0f5244e
@ -5,12 +5,12 @@ After=syslog.target
|
||||
[Service]
|
||||
User=www-data
|
||||
WorkingDirectory=/var/local/ghostream
|
||||
Environment=FLASK_CONFIG=production
|
||||
Environment=LDAP_URI=ldap://127.0.0.1:389
|
||||
Environment=LDAP_USER_DN=cn=Utilisateurs,dc=crans,dc=org
|
||||
Environment=SITE_NAME=Crans Stream
|
||||
Environment=SITE_HOSTNAME=stream.crans.org
|
||||
Environment=FAVICON=https://www.crans.org/images/favicon.ico
|
||||
Environment=FLASK_CONFIG="production"
|
||||
Environment=LDAP_URI="ldap://127.0.0.1:389"
|
||||
Environment=LDAP_USER_DN="cn=Utilisateurs,dc=crans,dc=org"
|
||||
Environment=SITE_NAME="Crans Stream"
|
||||
Environment=SITE_HOSTNAME="stream.crans.org"
|
||||
Environment=FAVICON="https://www.crans.org/images/favicon.ico"
|
||||
ExecStart=/usr/bin/uwsgi --http-socket 127.0.0.1:8080 --master --plugin python3 --module ghostream:app --static-map /static=/var/local/ghostream/ghostream/static
|
||||
Restart=on-failure
|
||||
KillSignal=SIGQUIT
|
||||
|
@ -27,10 +27,12 @@ def auth():
|
||||
# so just ignore login here, and NGINX will still allow streaming.
|
||||
return "Malformed request", 400
|
||||
|
||||
bind_dn = f"cn={name},{app.config.LDAP_USER_DN}"
|
||||
ldap_user_dn = app.config.get('LDAP_USER_DN')
|
||||
bind_dn = f"cn={name},{ldap_user_dn}"
|
||||
try:
|
||||
# Try to bind LDAP as the user
|
||||
connect = ldap.initialize(app.config.LDAP_URI)
|
||||
ldap_uri = app.config.get('LDAP_URI')
|
||||
connect = ldap.initialize(ldap_uri)
|
||||
connect.bind_s(bind_dn, password)
|
||||
connect.unbind_s()
|
||||
app.logger.info("%s logged in successfully", name)
|
||||
|
Loading…
Reference in New Issue
Block a user