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

main
Johannes Bülow 2024-11-27 10:18:07 +01:00
parent 13813e2b9d
commit bff4de6937
Signed by: jmb
GPG Key ID: B56971CF7B8F83A6
1 changed files with 1 additions and 1 deletions

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)
}