Here is my problem:
I would like to have subdomains on an IP address. I do not have a registered domain so this is what I want it to look like:
Here is the process:
I will send an e-mail to a customer asking them to click a link called I have a firewall which will redirect all HTTP traffic to an internal address. Therefore the customer will get the information from
Here is part of my httpd.conf file:
Port 80
ServerName 192.168.100.202
NameVirtualHost *
<VirtualHost *>
DocumentRoot /var/ ServerName 192.168.100.202
</VirtualHost>
<VirtualHost *>
DocumentRoot /var/ ServerName customers.192.168.100.202
</VirtualHost>
Do I need to do anything with DNS? If so, what?
I would like to have subdomains on an IP address. I do not have a registered domain so this is what I want it to look like:
Here is the process:
I will send an e-mail to a customer asking them to click a link called I have a firewall which will redirect all HTTP traffic to an internal address. Therefore the customer will get the information from
Here is part of my httpd.conf file:
Port 80
ServerName 192.168.100.202
NameVirtualHost *
<VirtualHost *>
DocumentRoot /var/ ServerName 192.168.100.202
</VirtualHost>
<VirtualHost *>
DocumentRoot /var/ ServerName customers.192.168.100.202
</VirtualHost>
Do I need to do anything with DNS? If so, what?