Report this

What is the reason for this report?

after move magento from localhost apache to VPS nginx 404 on pages

Posted on March 11, 2015

I moved from localhost apache to nginx VPS.

I can see the home page http://qbfweb.com/starblinds-ie/ but every other page is throwing 404 nginx error. I moved the magento from localhost which is using apache to my VPS which is using nginx. also I changed the DB core to correct path on secure and unsecure to http://qbfweb.com/starblinds-ie/ . I deleted my cache folder and session as well. Now I am playing with my block for this domain coz I think there must be the issue . Here is my block for this domain. Sorry for disturbing you again. But 5 hours googling and still nothing. maybe something missing here for magento . for wordpress this block is fine.

this is my block:

server { listen 80;

    root /var/www/qbfweb.com;
    index index.php index.html index.htm;

    server_name qbfweb.com www.qbfweb.com;

    location / {
            try_files $uri $uri/ /index.php?q=uri$args;
    }

    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
          root /usr/share/nginx/www;
    }

    # pass the PHP scripts to FastCGI server listening on the php-fpm socket
    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;

    }

}



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

tente comentar esta linha fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.