Dieses Blog durchsuchen

Montag, 17. April 2017

Nginx with php-fpm site config sample

If you are running nginx with php-fpm you will need a specific site configuration,

Here is a sample of a /etc/nginx/sites-enabled/<my-site>.conf to pass all requests on php files tp php-fpm on port 9000


upstream php70 {
server php70:9000;
}
server {
listen 80 default_server;
server_name _ localhost php70.dev www.php70.dev;
index index.php index.html;
root /var/www;
charset utf-8;
access_log /var/log/nginx/default-php70-access.log;
error_log /var/log/nginx/default-php70-error.log error;
location / {
autoindex on;
try_files $uri =404;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
include fastcgi_params;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_pass php70;
}
}
view raw php70.dev.conf hosted with ❤ by GitHub
Note: the php-fpm is a seperate machine or container with php-fpm7.0 on it. On this machine port 9000 must be exposed.


Keine Kommentare:

Kommentar veröffentlichen