file uploader with smtp auth
 
 
 
 
Go to file
Czar 929ea72243 change favicon 2020-11-21 04:10:33 -03:00
static change favicon 2020-11-21 04:10:33 -03:00
templates change style 2020-11-21 04:09:19 -03:00
views change style 2020-11-21 04:09:19 -03:00
README.md change style 2020-11-21 04:09:19 -03:00
app.ini rename app.py 2020-11-01 07:48:27 -03:00
config.ini change style 2020-11-21 04:09:19 -03:00
requirements.txt change style 2020-11-21 04:09:19 -03:00
wsgi.py change style 2020-11-21 04:09:19 -03:00

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;
    }
}