Hi, I am an absolute beginner to ShinyProxy and very thankful to the creators. I used google compute engine to create a server (also new to me) and then followed the getting started instructions for pulling the example shiny docker image.
Then running the following in the terminal shows me the app at http://localhost:8080/app/01_hello:
java -jar shinyproxy-3.2.2.jar
gcloud compute ssh instance_name \
--project=project_id \
--zone=zone_name \
-- -L 8080:localhost:8080
This is using SSH tunneling to allow me to view the app locally. How do I make this app public? Also, I read in the docs that a separate container is created when new users visit the app, how can I do a load test to see if the app is handling concurrent users?