Using `http.FileServer` works well, but reveals directory content if the URL is tampered with. ### Possible options - Maybe try `http.ServeFile` instead (given it's dangerous theoretically)? - Write own custom handler to serve static files? - IDK!
Using
http.FileServerworks well, but reveals directory content if the URL is tampered with.Possible options
http.ServeFileinstead (given it's dangerous theoretically)?