Skip to content

Commit

Permalink
server: Changing port to listen from 80 -> 8008
Browse files Browse the repository at this point in the history
Port 80 requires root privs, which is not ideal. Lets use a similar port - i vote for 8008 somewhat arbitrarily. Happy to discuss.
  • Loading branch information
HarryStericker authored Jan 29, 2025
1 parent 12834de commit 165c717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func main() {
wg.Add(1)
go func() {
defer wg.Done()
runWebServer(ctx, handlers.CreateRouter(ctx, s), 80)
runWebServer(ctx, handlers.CreateRouter(ctx, s), 8008)
}()

wg.Add(1)
Expand Down

0 comments on commit 165c717

Please sign in to comment.