Question

Why is wordpress site download file instead displaying site?

I can’t get my wordpress install live locally, i’m using wordpress, nginx, mySQL, php 7.1, ubuntu 16.04 and below is my nginx file. I just get a download file instead of the website.

server { listen 80 default_server; listen [::]:80 default_server ipv6only=on;

    root /var/www/html/homebuilder;
    index index.php index.html index.htm;

    server_name wwww.qa.homebuilder.com homebuilder.com;

    location / {
            # try_files $uri $uri/ =404;
             index index.php index.html index.htm index.nginx-debian.html;
            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/html;
    }

    location ~ \.php$ {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }

}


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Accepted Answer

Hi @scottastafford5

Are you sure you’re using PHP 7.1 and not 7.0 ? The default with Ubuntu 16.04 is 7.0.

Did you mean to have server_name wwww.qa.homebuilder.com homebuilder.com; instead of server_name homebuilder.com www.homebuilder.com; ?

Try this instead:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /var/www/html/homebuilder;
    index index.php index.html index.htm;

    server_name homebuilder.com www.homebuilder.com;

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

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
    }

    location ~ /\. {
        deny all;
    }
}

And then run sudo service nginx configtest to test the configuration and run sudo service nginx restart to restart Nginx and activate the configuration.

Worked perfectly, Thanks!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

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.