Alternate reddit frontend.
https://kddit.kalli.st
kddit | ||
static | ||
.gitignore | ||
poetry.lock | ||
pyproject.toml | ||
README.md | ||
requirements.txt | ||
wsgi.py |
kddit.kalli.st
reddit frontend
Running
$ uwsgi --ini app.ini
requires python>=3.8
Nginx config
server {
listen 80;
merge_slashes off;
location / {
include uwsgi_params;
uwsgi_pass unix:/path/to/kddit.kalli.st/socket;
}
}