Hello,
I have an external app at http://xyz.com:8080,
I’m trying to create a simple ood app in the dashboard that will reverse proxy to that external app in a new tab.
Using ChatGTP I created a manifest.yml and an nginx_stage.yml files:
---
server:
- location:
- proxy_pass: "http://xyz:8080/"
proxy_set_header: "Host $host"
proxy_set_header: "X-Real-IP $remote_addr"
proxy_set_header: "X-Forwarded-For $proxy_add_x_forwarded_for"
proxy_set_header: "X-Forwarded-Proto $scheme"
the error i’m getting is:
App has not been initialized or does not exist
This is the first time this app has been launched in your per-user NGINX (PUN) server. This requires a configuration change followed by a restart of your PUN server. Be sure you save all the work you are doing in other apps that have active websocket connections (i.e., Shell App) and you complete all file uploads/downloads.
Clicking the "Initialize App" button will apply the configuration change and restart your per-user NGINX (PUN) server.
Pressing the “Initialize App” button doesn’t do anything.
What am I missing here?
Thank you