Coder Social home page Coder Social logo

Comments (4)

gadelkareem avatar gadelkareem commented on April 25, 2024 3

There is a config option for this DirectoryIndex = False

from httprouter.

junxie6 avatar junxie6 commented on April 25, 2024 2

I have added a middleware to disable directory listing:

package main

import (
        "log"
        "net/http"
        "strings"
)

import (
        "github.com/julienschmidt/httprouter"
)

const (
        gStaticDir = "static"
)

var (
        gMux *httprouter.Router
)

func main() {
        gMux = httprouter.New()

        // Serving the static files - use this if you would like to work with some middlewares.
        // NOTE: FileServer calls path.Clean() to clean up path.
        gMux.Handler("GET", "/"+gStaticDir+"/*filepath", NoDirListingHandler(http.StripPrefix("/"+gStaticDir+"/", http.FileServer(http.Dir(gStaticDir)))))

        srv := &http.Server{
                Handler: gMux,
                Addr:    ":8080",
        }

        if err := srv.ListenAndServe(); err != nil {
                log.Fatal("http.ListenAndServe: ", err)
        }
}

func NoDirListingHandler(h http.Handler) http.Handler {
        return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
                if strings.HasSuffix(r.URL.Path, "/") {
                        http.NotFound(w, r)
                        return
                }
                h.ServeHTTP(w, r)
        })
}

Reference:

https://groups.google.com/forum/#!topic/golang-nuts/bStLPdIVM6w

from httprouter.

feyyazesat avatar feyyazesat commented on April 25, 2024 1

Hi, I solved this problem through http://stackoverflow.com/questions/13302020/rendering-css-in-a-go-web-application this answer. I'm a beginner and probably couldn't patch it for now. I did define funcs as in the answer.

type justFilesFilesystem struct {
fs http.FileSystem
}

func (fs justFilesFilesystem) Open(name string) (http.File, error) {
f, err := fs.fs.Open(name)
if err != nil {
return nil, err
}
return neuteredReaddirFile{f}, nil
}

type neuteredReaddirFile struct {
http.File
}

func (f neuteredReaddirFile) Readdir(count int) ([]os.FileInfo, error) {
return nil, nil
}

and before http.ListenAndServe

fs := justFilesFilesystem{http.Dir("/path/to/")}

router.Handler("GET", "/static/*filepath", http.StripPrefix("/static", http.FileServer(fs)))

It works properly, no directory listing, and access js, cs etc. files.

from httprouter.

julienschmidt avatar julienschmidt commented on April 25, 2024

ServeFiles just wraps http.FileServer. I don't think it has a way to disable directory listing.

from httprouter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.