...
Insert or change the location section of the ngnix.conf file
Code Block |
---|
location = /api/conf.d/admin_channel.json {
deny all;
return 404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
} |
...