From e7ce347f477cceb4dbc4f25c166f8efb319ed8f1 Mon Sep 17 00:00:00 2001 From: Andreas Dueren Date: Sun, 10 Aug 2025 11:06:08 -0600 Subject: [PATCH] Remove nginx to simplify deployment - run OpenObserve directly --- nginx.conf | 4 ++++ start.sh | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nginx.conf b/nginx.conf index 115c52d..99201d3 100644 --- a/nginx.conf +++ b/nginx.conf @@ -5,6 +5,10 @@ fastcgi_temp_path /tmp/nginx_fastcgi; uwsgi_temp_path /tmp/nginx_uwsgi; scgi_temp_path /tmp/nginx_scgi; +# Log to stdout/stderr for Cloudron +access_log /proc/1/fd/1; +error_log /proc/1/fd/2; + client_max_body_size 100m; server { diff --git a/start.sh b/start.sh index c159768..597eae1 100644 --- a/start.sh +++ b/start.sh @@ -70,8 +70,5 @@ if [ -n "${CLOUDRON_MAIL_SMTP_SERVER:-}" ]; then export ZO_SMTP_PASSWORD="${CLOUDRON_MAIL_SMTP_PASSWORD}" fi -echo "Starting nginx..." -/usr/sbin/nginx - echo "Starting OpenObserve..." exec /app/code/openobserve \ No newline at end of file