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
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
13813e2b9d
commit
bff4de6937
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ func main() {
|
||||||
})
|
})
|
||||||
|
|
||||||
// Start the HTTP server on port 80
|
// Start the HTTP server on port 80
|
||||||
err := http.ListenAndServe(":1313", nil)
|
err := http.ListenAndServe(":80", nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue