Moin moin,
ich habe das Problem, das die Designs nicht angezeigt werden.
Aktiv ist derzeit das "Twenty Sixteen" dieses wird mir so angezeigt
Wüsste jemand woran das liegen könnte?
Zu dem System:
Centos 6 X86_64
Nginx 1.0.15
Nginx sub config wenn benötigt:
Code
server {
listen 80;
server_name *entfernt*;
location / {
root /usr/share/nginx/wordpress;
index index.php;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /usr/share/nginx/wordpress;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Alles anzeigen
Grüße
Trobhy