I am using Codespaces and I would like to know why if I run an Spring Boot Web application, running on port 8080, if I click in the link when I redirect port the address add an extra ":8080"
https://codespaces-name-8080.app.github.dev:8080/home
But it should be:
https://codespaces-name-8080.app.github.dev/home
Many thanks in advance
Juan Antonio
This address:
https://blog.cloudflare.com/super-bot-fight-mode/is going to the default HTTPS port, which is port443. You said your Spring Boot app is running on port8080. Port8080is not the default HTTPS port, so the port has to be specified in the URL:https://codespaces-name-8080.app.github.dev:8080/home