Question

How to connect to wordpress website on Ubuntu 18.04 via HTTPS://IPaddress??

I was following this tutorial: https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-lamp-on-ubuntu-18-04 on my Ubuntu 18.04 droplet and I followed everything to the letter but when I go to https://[myIPAddress] it is unable to connect. If I go to HTTP://[myIPAddress] I get my Apache2 ubuntu default page. Wordpress should be running. Not sure why I can’t connect? Any help much appreciated, this is my first time doing any of this so I am sure I made a mistake somewhere, but honestly just wouldn’t really know how to find it.


Submit an answer
Answer a question...

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!

Sign In or Sign Up to Answer

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.

KFSys
Site Moderator
Site Moderator badge
September 10, 2020
Accepted Answer

Hi @liberdamj,

Usually these tutorials are directed in cases you want to use your domain rather than your IP address. You’ll need to make change to your file /etc/apache2/sites-enabled/000-default.conf

Open the file and find the line where it says

        DocumentRoot /var/www/html

Change it to the path to your website.

Once you have done the changes restart apache and that’s it

service apache2 restart

Regards, KFSys