Report this

What is the reason for this report?

Virtual Host on Nginx Ubuntu

Posted on August 26, 2015

Hello, I am using Ubuntu installed Nginx & all needy thing to serve website… I am beginner first time using nginx web server software. my server block for every domain is…

    server_name my_domain.com www.my_domain.com;

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

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /var/www/my_domain.com/public_html;
    }
location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

location ~ /\.ht {
 }
}

after this

sudo ln -s /etc/nginx/sites-available/my_domain.com /etc/nginx/sites-enabled/my_domain.com
sudo service nginx restart

My website dont work properly…

One my wordpress site homepage are working fine but any sub-pages means post or pages are not open… & my 2nd wordpress site are working all fine… One my php site post, pages or anything - when open showing only its homepage

Please anyone suggest What I missing to work proper Your help would be appreciated Thanks



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.

one my WordPress site pages, category-pages, wp-admin work fine…But Only site post are not working

This is an easy fix, you could have had it running already. If you want your permalinks to get working in nginx add the following to your vhost:

#######################
# Permalinks

if (!-e $request_filename) {
  rewrite ^.*$ /index.php last;
}

This should work for your permalinks, once done restart nginx. I don’t understand from your post what other problems you have so if you got more problems, please give some explanation.

Then explain in proper english, in an organized way what you got, where you got it and how you want it. What doesnt work? What setup do you have? What setup do you want? Give a good explenation

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.