mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 13:27:36 +03:00
fix proxy to handle other image extensions instead of only jpeg
This commit is contained in:
parent
8849d67cf1
commit
409f49a4c5
2 changed files with 24 additions and 4 deletions
2
main.go
2
main.go
|
@ -24,7 +24,7 @@ func main() {
|
|||
r.Use(securityHeaders)
|
||||
|
||||
r.HandleFunc("/{id}-lyrics", lyricsHandler)
|
||||
r.HandleFunc("/images/{filename}.jpg", proxyHandler)
|
||||
r.HandleFunc("/images/{filename}.{ext}", proxyHandler)
|
||||
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
|
||||
|
||||
server := &http.Server{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue