this repo has no description smallweb.run
smallweb
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor TLS configuration to prepend HTTP/2 and HTTP/1.1 protocols

pomdtr 6be5ff5d ea8d0619

+1 -1
+1 -1
cmd/up.go
··· 206 206 } 207 207 } 208 208 209 - tlsConfig.NextProtos = []string{"h2", "http/1.1"} 209 + tlsConfig.NextProtos = append([]string{"h2", "http/1.1"}, tlsConfig.NextProtos...) 210 210 ln, err := getListener(addr, tlsConfig) 211 211 if err != nil { 212 212 return fmt.Errorf("failed to get listener: %v", err)