You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Zolfa 1afeda23b1
nome-utente -> nome.utente
3 years ago
conf file renaming 3 years ago
static nome-utente -> nome.utente 3 years ago
README.md initial commit 4 years ago
user_backend.py file renaming 3 years ago
wsgi.py initial commit 4 years ago

README.md

Requirements

List of debian (bullseye) package required.

  • python3-ldap
  • python3-flask
  • uwsgi
  • uwsgi-plugin-python3
  • nginx

Configuration

  1. Copy all the files in /opt/lilk-users

  2. Edit LDAP settings in lilik_users.py

  3. Symlink conf/uwsgi/lilik_users.ini in /etc/uwsgi/apps-enabled/

    ln -s /opt/lilik-users/conf/uwsgi/lilik_users.ini /etc/uwsgi/apps-enabled/lilik_users.ini
    
  4. Configure nginx creating a server section in /etc/nginx/sites-enabled/

    # /etc/nginx/sites-enabled/site1.lilik.it.conf
    
    server {
        listen 443 ssl http2;
        listen [::]:443 ssl http2;
    
        # ... server_name and ssl configuration
    
        include /opt/lilik-users/conf/nginx/locations-lilik_users.conf;
    }
    
  5. Restart uwsgi and nginx

    systemctl restart uwsgi
    systemctl restart nginx
    
  6. Point your browser to /add/add.html and enjoy!