🚀 Initial release — Daily App Factory v7

This commit is contained in:
drjones
2026-08-18 07:02:04 -07:00
commit 8bb1ba4288
5 changed files with 797 additions and 0 deletions

10
nginx-interviewforge Normal file
View File

@@ -0,0 +1,10 @@
server {
listen 80;
server_name _;
location / {
proxy_pass http://127.0.0.1:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}