file uploader with smtp auth
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.
 
 
 
 
Czar 929ea72243 change favicon 2 years ago
static change favicon 2 years ago
templates change style 2 years ago
views change style 2 years ago
README.md change style 2 years ago
app.ini rename app.py 2 years ago
config.ini change style 2 years ago
requirements.txt change style 2 years ago
wsgi.py change style 2 years ago

README.md

u.kalli.st

file uploader with smtp auth

Requires python>=3.8.

Running

$ uwsgi --ini app.ini

Nginx config

server {
    listen 80;
    client_max_body_size 1g;
    location / {
        include uwsgi_params;
        uwsgi_pass unix:/path/to/u.kalli.st/socket;
    }
}