Create a virtual host Apache for the IP having several sites to avoid that the access by IP shows the first created site.
Something like that :
Code:
NameVirtualHost 192.168.1.2:80
NameVirtualHost 192.168.1.2:443
<VirtualHost 192.168.1.2:80>
ServerName shared.domain
DocumentRoot /var/www/sharedip
User www-data
Group www-data
</VirtualHost>
<VirtualHost 192.168.1.2:443>
SSLEngine on
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
ServerName shared.domain
DocumentRoot /var/www/sharedip
User www-data
Group www-data
</VirtualHost>
and create a simple index.html file into the directory to display :
This IP is a shared IP. You can access to the requested website by typing the URL instead of IP in your favorite browser.
Recent comments
1 day 5 hours ago
1 day 5 hours ago
1 day 10 hours ago
1 day 17 hours ago
1 day 18 hours ago
1 day 19 hours ago
1 day 23 hours ago
2 days 6 hours ago
2 days 10 hours ago
2 days 11 hours ago