thecollegeview: pass rest api to phpfpm

This commit is contained in:
wizzdom 2024-12-11 00:09:54 +00:00
parent 7c4a4ec66f
commit 3adfffb563
No known key found for this signature in database
GPG key ID: EEB7D796F4B09F07

View file

@ -86,6 +86,11 @@ http {
log_not_found off;
}
# Pass REST API to FPM
location /wp-json/ {
try_files $uri $uri/ /index.php?$args;
}
# Pass the PHP scripts to FastCGI server
location ~ \.php$ {
include fastcgi_params;