3
I am having difficulty configuring my virtual host in Apache2 with Debian.
I created the folder:
mkdir /var/www/site/public_html
inside that directory I created a file index.html
.
After that I set up the virtual host like this:
<VirtualHost *:80>
ServerName site.org
ServerAlias www.site.org
DocumentRoot /var/www/site/public_html/
</VirtualHost>
Here if I will access through the url http://192.168. 0.100/website, does not access the page, only if accessed by http://192.168. 0.100/site/public_html.
Where I’m going wrong 'cause I got all lost in it.