Questions tagged [static-files]

Static-files are ones that don't get amended during runtime. This could be a HTML file that's served up by a web server.

769 questions
-2
votes
1 answer

Why Django-Admin Panel did not show css and javascript in real vps?

I have django admin panel working on a vps ( Windows Server 2012 ) , Why it is not showing any css styles or boostrap ? it is showing just html and nothing else .
T.Pool
  • 145
  • 1
  • 2
  • 13
-2
votes
1 answer

Golang handle static folder

I'm not able to get files placed in static folder. I'm using gorilla mux package. main.go code: fs := http.FileServer(http.Dir("static")) mainRouter.PathPrefix("/static/").Handler(http.StripPrefix("/static/", fs)) http.Handle("/",…
Persi
  • 414
  • 6
  • 15
-2
votes
1 answer

Django: Static files not working in production environment

I tried all the ways to deploy static files in production environment but still the static files are not appearing. I don't know whats wrong. Please help me in deploying static files(like css, javascripts, images, etc.). I've tried using many…
1 2 3
51
52