Fix Redis requirement, nginx logging, and prisma path

This commit is contained in:
Andreas Dueren
2025-07-14 21:37:35 -06:00
parent 675c6fa1c8
commit af2e3c687b
3 changed files with 10 additions and 9 deletions

View File

@@ -13,6 +13,10 @@ server {
fastcgi_temp_path /tmp/nginx_fastcgi_temp;
uwsgi_temp_path /tmp/nginx_uwsgi_temp;
scgi_temp_path /tmp/nginx_scgi_temp;
# Log to stdout/stderr instead of files
access_log /dev/stdout;
error_log /dev/stderr;
# Enable compression
gzip on;