정적 콘텐츠에서 404를 반환하는 nginx 및 php-fpm

정적 콘텐츠에서 404를 반환하는 nginx 및 php-fpm

컨테이너 1의 nginx를 포트 9000의 컨테이너 2에서 wordpress를 실행하는 php-fpm에 연결하려고 합니다. 게시물과 같이 동적으로 생성된 콘텐츠에서는 작동하는 것처럼 보이지만 CSS, JS 또는 이미지와 같은 정적 콘텐츠는 404를 반환합니다. . 이 문제의 원인은 무엇입니까?

첫 번째 "서버" 블록은 HTTP가 아닌 모든 요청을 포착하여 HTTPS로 리디렉션하기 위한 반면, 두 번째 블록은 "mysite.com"으로 전송된 요청에 대해 "모두 포착"하기 위한 것입니다.

감사합니다,

http {
        include       mime.types;
        default_type  application/octet-stream;
        sendfile        on;

        server {
                listen 80;
                listen [::]:80;
                server_name _;
                return 301 https://$host$request_uri;
        }

        server {
                listen       80;
                listen       [::]:80;
                listen       443 ssl http2;
                listen       [::]:443 ssl http2;
                server_name  localhost;

                ssl_certificate      /etc/ssl/cert.pem;
                ssl_certificate_key  /etc/ssl/privkey.pem;
                ssl_session_cache    shared:SSL:1m;
                ssl_ciphers  HIGH:!aNULL:!MD5;
                ssl_prefer_server_ciphers  on;

                location / {
                        root   /usr/local/www/nginx;
                        index  index.html index.htm;
                }
        }

        server {
                server_name             mysite.com
                listen          80;
                listen [::]:80;
                listen 443 ssl http2;
                listen [::]:443 ssl http2;

                ssl_certificate      /etc/ssl/cert.pem;
                ssl_certificate_key  /etc/ssl/privkey.pem;

               location / {
                   try_files $uri $uri/ /index.php?$args;
               }

               location ~ \.php$ {
                       set $my_https $https;
                       if ($http_x_forwarded_proto = 'https') {
                               set $my_https 'on';
                       }
                       root /var/wordpress;
                       fastcgi_pass 192.168.10.6:9000;
                       fastcgi_index index.php;
                       fastcgi_param SCRIPT_FILENAME /var/wordpress$fastcgi_script_name;
                       include fastcgi_params;
               }
        }
}

관련 정보