Rithik
How do I connect my python app to sqlite?
I enabled private networking, not really sure whats next. Tried giving the private network url as sqlite url, but thats erroring out.
SQLALCHEMY_DATABASE_URL = "sqlite3.railway.internal:////app/data/database.db"
27 replies
trying to host a static website with nginx.
FROM nginx:latest
WORKDIR /usr/share/nginx/html/
COPY public_html/ /usr/share/nginx/html/
CMD ["nginx", "-g", "daemon off;"]
this is my Dockerfile which is working locally, but im getting cloudflare host error on my site.
im seeing these logs.
2024/02/04 10:22:48 [notice] 7#7: worker process 31 exited with code 0
2024/02/04 10:22:48 [notice] 7#7: worker process 53 exited with code 0
2024/02/04 10:22:48 [notice] 7#7: signal 29 (SIGIO) received
2024/02/04 10:22:48 [notice] 7#7: signal 17 (SIGCHLD) received from 58
2024/02/04 10:22:48 [notice] 7#7: worker process 58 exited with code 0
2024/02/04 10:22:48 [notice] 7#7: exit
7 replies