Reactive Resume #32

Closed
opened 2025-09-09 19:42:14 -05:00 by giteasync · 3 comments

Originally created by @vhsdream on GitHub.

Originally assigned to: @vhsdream on GitHub.

Name of the Script

Reactive Resume

📋 Script Details

Details here

Originally created by @vhsdream on GitHub. Originally assigned to: @vhsdream on GitHub. ### Name of the Script Reactive Resume ### 📋 Script Details Details [here](https://github.com/community-scripts/ProxmoxVE/issues/5920)
Author

@vhsdream commented on GitHub:

The current .env works out of the box, for reaching the service on your LAN without TLS.

If you want to put it behind a reverse proxy (I tested with Caddy), the .env needs two small changes:

PUBLIC_URL=https://<your FQDN>
STORAGE_URL=https://<your FQDN>/rxresume

rxresume is the name of the storage bucket.

In my Caddy config, I had to slightly alter my typical configuration to proxy requests to the storage endpoint (/rxresume/*) to port 9000, and the rest to port 3000:

handle @resume {
  @storage path /rxresume/*
  reverse_proxy @storage http://10.10.20.139:9000
  reverse_proxy http://10.10.20.139:3000
}
@vhsdream commented on GitHub: The current `.env` works out of the box, for reaching the service on your LAN without TLS. If you want to put it behind a reverse proxy (I tested with Caddy), the `.env` needs two small changes: ``` PUBLIC_URL=https://<your FQDN> STORAGE_URL=https://<your FQDN>/rxresume ``` `rxresume` is the name of the storage bucket. In my Caddy config, I had to slightly alter my typical configuration to proxy requests to the storage endpoint (/rxresume/*) to port 9000, and the rest to port 3000: ``` handle @resume { @storage path /rxresume/* reverse_proxy @storage http://10.10.20.139:9000 reverse_proxy http://10.10.20.139:3000 } ```
Author

@github-actions[bot] commented on GitHub:

The reactive-resume---community-fork script is ready for testing:
bash -c "$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/ct/reactive-resume.sh)"
Note: This is not in the official repo yet—it's just a dev version! After merging into ProxmoxVE, it will need to be recreated.

@github-actions[bot] commented on GitHub: The reactive-resume---community-fork script is ready for testing: ```bash -c "$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/ct/reactive-resume.sh)"``` Note: This is not in the official repo yet—it's just a dev version! After merging into ProxmoxVE, it will need to be recreated.
Author

@vhsdream commented on GitHub:

Um, wow, it works without any changes 👍🏼

@vhsdream commented on GitHub: Um, wow, it works without any changes 👍🏼
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: community-scripts/ProxmoxVED#32