This may be a silly question but I'm new to all this. I want to make sure I understand what plumberDeploy::do_forward()
does. My setup:
- I have a plumber app deployed on Digital Ocean
- I have a custom domain name
- I've set up https
- I can access the API at
https://mydomain.com/myplumberproject/endpoint
. - But I want to be able to access it without the
/myplumberproject
bit. Sohttps://mydomain.com/endpoint
.
Is this where do_forward()
comes in? Can I use do_forward(my_droplet, "myplumberproject")
?