Disable opcache for vhost
Disable opcache for vhost
Hello, I use php-fpm + nginx configuration. How I can disable opcache for one of my sites?
Thanks.
Thanks.
Re: Disable opcache for vhost
you can try to create a custom php.ini under your website's root dir and add this line :
then restart phpfpm service
Code: Select all
opcache.enable=0
-
- Posts: 31
- Joined: Wed Jul 13, 2016 1:35 pm
Re: Disable opcache for vhost
Or add opcache_reset() into your php script.