79086422

Date: 2024-10-14 13:53:23
Score: 1
Natty:
Report link

Simply, the app doesn't serve static file on nginx side. After serving static files on nginx side, everythins works well.

# Dockerfile
COPY ./django_app/static /etc/nginx/html/static
# nginx.conf
server {
    ...
    location /static {
        root /etc/nginx/html;
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: hanamura.yuki