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
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.
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
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.
one my WordPress site pages, category-pages, wp-admin work fine…But Only site post are not working
Thanks MrPeppah for reply,
my wp permalinks is the
postname
Important is- When I 'm setup WordPress permalinks is default…thenhttp://my_domain/sample-post/
are work fine(when manually open) andhttp://my_domain/?p=123
not work…and Non-WP Site links are completely not work…If open any links then it show only homepage(not redirect)
Confusing me a lot… The Biggest Brain Licker Web Server Is
Nginx
Request to all, Dont Use Nginx If you are going to host Multiple website…Nginx will Death You
Check your WordPress permalinks. Under settings.
WordPress pages, category-pages, wp-admin work fine…But Only site post are not working
MrPeppah. what you are suggested the link…Its only for setup WP multisite…This is not What I want
Might want to check this article out.