CSS や JavaScript 静的な HTML を File descriptor が cache してしまい問題が起こってしまってた。
httpd.com
EnableSendfile Off
nginx.conf
sendfile : off;
現在 nginx で開発を行っているので、下記に書き換えた所。
http{
sendfile off;
}
これで問題は解消された。
CSS や JavaScript 静的な HTML を File descriptor が cache してしまい問題が起こってしまってた。
httpd.com
EnableSendfile Off
nginx.conf
sendfile : off;
現在 nginx で開発を行っているので、下記に書き換えた所。
http{
sendfile off;
}
これで問題は解消された。