I have a django application deployed on an AWS IIS server. Static fils are served just fine via 'runserver', but not via the IIS server. I have done everything right but it doesn't work. i even tried adding a static folder virtual directory but it didnt work. this is my webconfig:
this is my settings:
STATIC_URL = '/static/' STATIC_ROOT = BASE_DIR / "static"
The static files feature is installed in my IIS. My 'static' folder is placed in the app folder and it works just fine via runserver but not via the public IP over IIS. Please i need help with this.
i also tried adding this web.config to to my static file folder but it didnt work:
<?xml version="1.0" encoding="UTF-8"?>