🐛 fix 404 on first hit
On first hit, Server() calls for the first time router(). As a result / and /static are only configured after first hit
This commit is contained in:
parent
1bc03c1b47
commit
32df287f56
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ type ServerConfig struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Configure HTTP router
|
// Configure HTTP router
|
||||||
func (config ServerConfig) router(_ http.ResponseWriter, _ *http.Request) {
|
func (config ServerConfig) router() {
|
||||||
WebConfig := plak.WebConfig{
|
WebConfig := plak.WebConfig{
|
||||||
DB: config.DB,
|
DB: config.DB,
|
||||||
UrlLength: config.UrlLength,
|
UrlLength: config.UrlLength,
|
||||||
|
@ -45,7 +45,7 @@ func Config(listenAddress string) *http.Server {
|
||||||
func (config ServerConfig) Server() {
|
func (config ServerConfig) Server() {
|
||||||
log.Println("Listening on " + config.HTTPServer.Addr)
|
log.Println("Listening on " + config.HTTPServer.Addr)
|
||||||
|
|
||||||
http.HandleFunc("/", config.router)
|
config.router()
|
||||||
|
|
||||||
log.Fatal(config.HTTPServer.ListenAndServe())
|
log.Fatal(config.HTTPServer.ListenAndServe())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue