currently I have my main website running in a droplet. My domain https://example.com has an A record pointing to the ip of the droplet and in the droplet I'm using nginx-proxy with the VIRTUAL_HOST variable of the domain.
Now, I would like to access one whole different application hosted in another droplet through the url https://example.com/myapp
I know I could use the same logic above using a subdomain https://myapp.example.com pointing to the ip of this new droplet, but I really would like to use the url https://example.com/myapp
How can I accomplish this? Is that possible at all?