0

One Public IP Address giving same service for two web site (Different DNS). beirutmotorsparts.com - 66.96.147.120 - 443 alwaslautoparts.com - 66.96.147.120 - 443 One public IP can give 443 to one Web site (URL), How it is possible to two url same service (443)?

  • Have you tried doing your own research? Even ServerFault has **many** answers covering this topic. It is strange to see here somebody who had never heard of SNI. – Nikita Kipriyanov Mar 06 '23 at 04:45
  • Thanks. I was never heard SNI SSL. Today only I got the information about SNI SSL. Thanks once again. – sujith sankar Mar 06 '23 at 08:47

1 Answers1

-1

May be Apache configuration is not correct, NameVirtuahost not enabled in old apache server version.

####################################### NameVirtualHost *:80 ####################################### <VirtualHost *:80> ServerName xyz.com DocumentRoot /htdocs/xyz ####################################### <VirtualHost *:80> ServerName abc.com DocumentRoot /htdocs/abc #######################################

if you are using https connection then NameVirtual host can be configured in /conf.d/ssl.conf

  • How security appliance will allow from outside one public IP Address and one services (443) to two different Web site Page (Whether it is IIS, Apache or Nginx) – sujith sankar Mar 06 '23 at 05:50