Question
Extra Wordpress website on a sub-domain using NGINX (LEMP)
https://www.digitalocean.com/community/articles/how-to-install-wordpress-with-nginx-on-ubuntu-12-04
I did this installation few months ago and everything worked fine! Thank you guys!
Later I have changed mymaindomain.com website from "/var/www/" to "/var/www/mymaindomain" -- I did change the root on nginx configuration files and everything worked! :)
Now I did repeat the same Wordpress instillation for a second website. This one, I want it to be on a subdomain like this: sub.mymaindomain.com.
So I have repeated the Wordpress installation on this folder "/var/www/SUBmymaindomain", and created a new Set Up Nginx Server Blocks file with a different name for this website:
server {
listen 80; root /var/www/SUBmymaindomain;
index index.php index.html index.htm;
server_name sub.mymaindomain.com;
(...)
After this I did activate the Server Block with a new symbolic link and so on... But it seams that's not enough to make it working. Do i need to do any changes on DigitalOcean DNS setting? Thank you guys!
Add a comment
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.
×