Initial import of transcript pipeline

This commit is contained in:
maddin
2026-04-15 00:01:38 +02:00
commit fea662392c
305 changed files with 40508 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
server {
listen 80;
listen [::]:80;
server_name memos.maddin.app;
root /home/maddin/cloud/whisper/memos-site;
index index.html;
auth_basic "Private Memos";
auth_basic_user_file /home/maddin/cloud/whisper/deploy/nginx/memos.htpasswd;
location / {
try_files $uri $uri.html $uri/ /404.html;
}
}