change 4000 to 80

This commit is contained in:
2024-08-29 13:51:52 +02:00
parent d670e87908
commit 0bba3cd7d2
4 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ func (app *Config) authenticate(w http.ResponseWriter, a AuthPayload) {
// call the service
req, err := http.NewRequest(
"POST",
"http://authentication-service:4000/authenticate",
"http://authentication-service/authenticate",
bytes.NewBuffer(authPayload),
)
if err != nil {

View File

@ -6,7 +6,7 @@ import (
"net/http"
)
const webPort = "4000"
const webPort = "80"
type Config struct{}