Doing my nut in!
Got an Azure VM running Ubuntu and Apache2. Its on 10.0.0.1 (within an Azure subnet).
I can access the webpage via 10.0.0.1 all day long.
I've created a /etc/apache2/sites-available/myinternal.domain.conf with:
I've setup DNS locally within the environment so that 10.0.0.1 points to myinternal.domain and nslookup supports that, but yet, nothing.
Grrrr. Any ideas? I see a hosts file in apache2 which I could try I guess?
Got an Azure VM running Ubuntu and Apache2. Its on 10.0.0.1 (within an Azure subnet).
I can access the webpage via 10.0.0.1 all day long.
I've created a /etc/apache2/sites-available/myinternal.domain.conf with:
Code:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www/html
ServerName myinternal.domain
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/.access.log combined
</VirtualHost>
I've setup DNS locally within the environment so that 10.0.0.1 points to myinternal.domain and nslookup supports that, but yet, nothing.
Grrrr. Any ideas? I see a hosts file in apache2 which I could try I guess?