Report this

What is the reason for this report?

How to point droplet's IP address to another DocumentRoot?

Posted on March 3, 2017

I cloned a LAMP Ubuntu 16.04 droplet. I was provided a droplet IP address which pointed me to the static message “Please log into your droplet via SSH to configure your LAMP installation.” which was the text in the file “/var/www/html/index.html”, powered by “/etc/apache2/sites-available/000-default.conf”

Now I followed https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts and created an additional virtualhosts and corresponding DocumentRoots, enabled them and disabled the default “000-default.conf”. I have one main domain (say siteA.com), and several other domains co-hosted on the same droplet. If someone types the IP address I want server to render siteA. How do I make it happen?

Additional Info:

  • Currently I get The requested URL / was not found on this server. when typing the IP address. This is obviously because I disabled 000-default.conf
  • As per my understanding, since siteA.com is the only enabled virtualhost, IP address should automatically render it. But this is not happening
  • Results of apache2ctl -S: ServerRoot: “/etc/apache2” Main DocumentRoot: “/var/www/html” Main ErrorLog: “/var/log/apache2/error.log” Mutex watchdog-callback: using_defaults Mutex default: dir=“/var/lock/apache2” mechanism=fcntl Mutex mpm-accept: using_defaults PidFile: “/var/run/apache2/apache2.pid” Define: DUMP_VHOSTS Define: DUMP_RUN_CFG User: name=“www-data” id=33 not_used Group: name=“www-data” id=33 not_used


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.
0

Aaaaah my bad! The problem was a typo in DocumentRoot of siteA.com conf file. Instead of /var/www/siteA.com/public_html, I typed /var/www/html/siteA.com/public_html

Problem stands resolved.

ServerRoot: "/etc/apache2"
Main DocumentRoot: "/var/www/html"
Main ErrorLog: "/var/log/apache2/error.log"
Mutex watchdog-callback: using_defaults
Mutex default: dir="/var/lock/apache2" mechanism=fcntl 
Mutex mpm-accept: using_defaults
PidFile: "/var/run/apache2/apache2.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="www-data" id=33 not_used
Group: name="www-data" id=33 not_used

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.