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