Не удается получить nginx для рендеринга моего сайта WordPress
Я новичок в nginx, но я неукоснительно следовал всем учебным пособиям и пытался настроить свой сайт WordPress, но в настоящий момент у меня не получается решить проблему. В основном у меня есть следующая конфигурация в моем конфигурационном файле для моего сайта WordPress:
server {
listen 80;
listen 443 default ssl;
server_name domain.com;
root /var/www/html/domain.com/htdocs;
access_log /var/www/html/domain.com/htdocs/logs/access.log;
error_log /var/www/html/domain.com/htdocs/logs/error.log;
location / {
index index.php index.html;
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
location ~ /\. {
access_log off;
log_not_found off;
deny all;
}
rewrite /files/$ /index.php last;
if ($uri !~ wp-content/plugins) {
rewrite /files/(.+)$ /wp-includes/ms-files.php?file=$1 last;
}
location ~* ^/(favicon.ico|robots.txt)$ {
access_log off;
log_not_found off;
}
location ~ .php$ {
try_files $uri =404;
# Include the fastcgi_params defaults provided by nginx
include /etc/nginx/fastcgi_params;
# SCRIPT_FILENAME is a required parameter for things to work properly,
# but is missing in the default fastcgi_params. We define it here to
# be sure that it exists.
#fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME /var/www/html/domain.com/htdocs$fastcgi_script_name;
# Use the upstream for fastcgi / php5-fpm that we defined in nginx.conf
fastcgi_pass php;
# And get to serving the file!
fastcgi_index index.php;
}
}
Когда я набираю IP-адрес /domain.com, у меня возникает небольшая задержка, а затем я просто получаю текст сайта. Никаких ошибок и на самом деле его почти как страница не отображается. Это потому, что php не анализируется должным образом? В противном случае какие-либо идеи относительно того, что я делаю неправильно?