Reverted change in server.go that moved the listen port off of port 80
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Johannes Bülow 2024-11-27 10:18:07 +01:00
parent 13813e2b9d
commit bff4de6937
Signed by: jmb
GPG key ID: B56971CF7B8F83A6

View file

@ -24,7 +24,7 @@ func main() {
})
// Start the HTTP server on port 80
err := http.ListenAndServe(":1313", nil)
err := http.ListenAndServe(":80", nil)
if err != nil {
log.Fatal(err)
}