0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-12-13 20:03:09 +01:00

Fix Riot Web embedding into Yggdrasil demo

This commit is contained in:
Neil Alexander 2020-07-06 17:25:46 +01:00
parent 00e0df7c87
commit 65084c5052

View file

@ -19,7 +19,7 @@ func Embed(rootMux *mux.Router, listenPort int, serverName string) {
embeddedFS := _escFS(false)
embeddedServ := http.FileServer(embeddedFS)
rootMux.Handle("/", embeddedServ)
rootMux.NotFoundHandler = embeddedServ
rootMux.HandleFunc("/config.json", func(w http.ResponseWriter, _ *http.Request) {
configFile, err := embeddedFS.Open("/config.sample.json")
if err != nil {