Question
webapp is not serving static files
urls.pyin main app
vurlpatterns = [
path('', include('products.urls', namespace='mainapp')),
path('', include('checkout.urls', namespace='checkout')),
path('admin/', admin.site.urls),
#path('accounts/', include('allauth.urls')),
path('', include('accounts.urls')),
]+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
**
settings.py**
STATIC_URL = '/static/'
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
i am getting file not found on my website 404
i am using cyberpanel with openlightspeed server
i am using *contex * for openlightspeed in cyberpanel