Hi,
Thank you for your anwser.
The httpd.conf before I put the dedicated IP for my domain is like below. Remember that IP with final number 369 is the shared IP and the IP with final 400 is the dedicated of my domain now and the IP of the ns2.mydomain.com too.
<VirtualHost 74.XXX.XXX.369:80>
<IfModule mod_userdir.c>
UserDir disabled
</IfModule>
ServerName srv.mydomain.com
DocumentRoot /usr/local/apache/htdocs
ServerAdmin
suport@mydomain.com
<IfModule mod_suphp.c>
suPHP_UserGroup nobody nobody
</IfModule>
</VirtualHost>
# Default vhost for unbound IPs
<VirtualHost *>
<IfModule mod_userdir.c>
UserDir disabled
</IfModule>
ServerName srv.mydomain.com
DocumentRoot /usr/local/apache/htdocs
ServerAdmin
suport@mydomain.com
<IfModule mod_suphp.c>
suPHP_UserGroup nobody nobody
</IfModule>
</VirtualHost>
Then after I install the SSL and put a dedicated IP for my domain like I said, the httpd.conf is like below.
NameVirtualHost 74.XXX.XXX.400:80
<VirtualHost 74.XXX.XXX.400:80>
ServerName srv.mydomain.com
DocumentRoot /usr/local/apache/htdocs
ServerAdmin
suport@mydomain.com
<IfModule mod_suphp.c>
suPHP_UserGroup nobody nobody
</IfModule>
</VirtualHost>
# Default vhost for unbound IPs
NameVirtualHost 74.XXX.XXX.400:80
<VirtualHost 74.XXX.XXX.400:80>
ServerName srv.mydomain.com
DocumentRoot /usr/local/apache/htdocs
ServerAdmin
suport@mydomain.com
<IfModule mod_suphp.c>
suPHP_UserGroup nobody nobody
</IfModule>
</VirtualHost>
For solve the problem related, must I edit and change the NameVirtualHost 74.XXX.XXX.400:80 and put the number of shared IP? Is it?
In the old file was
# Default vhost for unbound IPs
<VirtualHost *>
and now is
# Default vhost for unbound IPs
NameVirtualHost 74.XXX.XXX.400:80
Thanks for your help