minimal viable product

This commit is contained in:
simon
2021-09-06 00:10:14 +07:00
commit dc9fd72cde
65 changed files with 6499 additions and 0 deletions

18
nginx.conf Normal file
View File

@@ -0,0 +1,18 @@
server {
listen 8000;
location /cache/ {
alias /cache/;
}
location /media/ {
alias /youtube/;
}
location / {
include uwsgi_params;
uwsgi_pass localhost:8080;
}
}