Justo este finde semana yo tambien realice la migracion de mi vhost de apache a nginx
Tenia un wordpress de prueba que tambien lo migre. Estoy corriendo nginx 1.6.2 sobre debian 8
esta es la conf
Código Apache:
Ver originalserver {
server_name ggutierrez.no-ip.info;
# make sure Nginx can write to these files
# access_log /home/german/public_html/wordpress/nginxlogs/access.log;
# error_log /home/german/public_html/wordpress/nginxlogs/error.log;
root /home/german/public_html/wordpress/;
location / {
index index.php;
try_files $uri $uri/ index.php$is_args$args;
}
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/german/public_html/wordpress/$fastcgi_script_name;
}
}