From b122de1f99f9436ec1647f44398c7db909ac6595 Mon Sep 17 00:00:00 2001 From: Mazian Date: Sat, 28 Feb 2026 16:45:44 -0500 Subject: [PATCH] Update .env output with useful information (#12401) --- install/reactive-resume-install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/reactive-resume-install.sh b/install/reactive-resume-install.sh index 12f2958be..ca4d0f330 100644 --- a/install/reactive-resume-install.sh +++ b/install/reactive-resume-install.sh @@ -69,6 +69,10 @@ cat </opt/Reactive-Resume/.env NODE_ENV=production PORT=3000 # for use behind a reverse proxy, use your FQDN for PUBLIC_URL and STORAGE_URL +# To avoid issues when behind a reverse proxy with downloading PDFs, ensure that the +# storage path is accessible via a subdomain (i.e storage.yourapp.xyz) or you set your +# reverse proxy to properly rewrite the subpath (/rxresume) to point to the service +# running on port 9000 (minio). PUBLIC_URL=http://${LOCAL_IP}:3000 STORAGE_URL=http://${LOCAL_IP}:9000/rxresume DATABASE_URL=postgresql://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}?schema=public