-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
48 lines (41 loc) · 945 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package main
import (
"context"
"log"
"net/http"
"os"
"os/signal"
"time"
i "github.com/bonzayio/go-atc-server/internal"
)
// Starting the server
func main() {
// This is the domain the server should accept connections for.
// domains := []string{"bonzay.io", "www.bonzay.io"}
handler := i.NewRouter()
port := os.Getenv("PORT")
if port == "" {
port = "8080"
log.Printf("Defaulting to port %s", port)
}
srv := &http.Server{
Addr: ":" + port,
Handler: handler,
ReadTimeout: 5 * time.Second,
WriteTimeout: 10 * time.Second,
IdleTimeout: 120 * time.Second,
}
// Start the server
go func() {
log.Printf("Listening on port %s", port)
srv.ListenAndServe()
}()
// Wait for an interrupt
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
<-c
// Attempt a graceful shutdown
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
srv.Shutdown(ctx)
}