hi
im using ubuntu 12.04 + LAMP and trying to put it my websites
i read https://www.digitalocean.com/community/tutorials/how-to-set-up-multiple-wordpress-sites-on-a-single-ubuntu-vps this article and i completed to Virtual Host Configuration
but i dont know how to set up my domains to digital ocean
for examle : 12.34.56.789 is my server ip and i add different 2 domains like www.1234.com , www.5678.com on Digital Ocean Cp panner and i changed my domains name server as NS1.digitalocean…
and then how to set up A or CNAME record of domains?
just put the same ip like A - @ -> 12.34.56.789 and A - WWW - 12.34.56.789 on 2 domains?
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!
Hi there,
You could follow the steps from this video on how to host multiple WordPress websites on the same server with Apache Virtual Hosts:
Essentially, what needs to happen is:
wget command:wget wordpress.org/latest.zip
unzip latest.zip
/var/www/ folder:mv wordpress /var/www/your_site.com
chown -R www-data:www-data /var/www/your_site.com
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/your_site.conf
sudo a2ensite
sudo apachectl -t
Syntax OK reload Apache:sudo systemctl reload apache2
mysql
Then run the following queries:
CREATE DATABASE wp_site;
CREATE USER 'wp_site'@'%' IDENTIFIED BY 'use_secure_password_here';
GRANT ALL PRIVILEGES ON wp_site.* TO 'wp_site'@'%' WITH GREANT OPTION;
Hope that this helps. Regards, Bobby
just put the same ip like A - @ -> 12.34.56.789 and A - WWW - 12.34.56.789 on 2 domains?
Yes. I would create the following records:
@ A 12.34.56.789 www CNAME @
The only difference being the use of a CNAME instead of an A record for your www subdomain. This way should you ever need to point your domain to a different IP you will only have to change the @ record for each domain.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
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
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.