Beitrag von Aebian ()
Dieser Beitrag wurde gelöscht, Informationen über den Löschvorgang sind nicht verfügbar.
Schauste mal hier http://wiki.ubuntuusers.de/nginx unter "PHP mit dem Paket php5-fpm". Hast du die angegeben Konfiguration drin, sonst mal php-neustart versuchen??
Schauste mal hier http://wiki.ubuntuusers.de/nginx unter "PHP mit dem Paket php5-fpm". Hast du die angegeben Konfiguration drin, sonst mal php-neustart versuchen??
Hab ich und auch php geneustartet ohne Probleme. trotzdem lädt mir nginx die PHP Dateien runter.
# You may add here your server {
# …
# }
# statements for each of your virtual hosts to this file
##
# You should look at the following URL’s in order to grasp a solid understanding of Nginx configuration files in order to fully unleash the power of Nginx. http://wiki.nginx.org/Pitfalls http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
server {
listen 80;
root /usr/share/nginx/www;
index index.php index.html index.htm;
server_name DeadalusHD.com;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi.config; # fastcgi_params wird nur für Abwärtskompatibilität verwendet
}
}
Alles anzeigen
Hab ich und auch php geneustartet ohne Probleme
Ausgabe von systemctl status php5-fpm.service oder systemctl status php-fpm.service? Einträge im Error Log?