add proxy to images

This commit is contained in:
rramiachraf 2022-10-11 14:23:10 +01:00
parent f5288a0e1d
commit ce95d5de3e
3 changed files with 33 additions and 1 deletions

View file

@ -24,6 +24,7 @@ func main() {
r.Use(securityHeaders)
r.HandleFunc("/{id}-lyrics", lyricsHandler)
r.HandleFunc("/images/{filename}.jpg", proxyHandler)
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
server := &http.Server{