This will useful when web site has more than 2 domains. For an example webs site is configured to use one domain as real/actual domain and other domain use for testing purposes/temporary. But if you use more than 1 domain for web site, web crawlers such as Google bot will penalize the site as it …
Category Archive: Nginx
Oct 20
Solved no “ssl_certificate” is defined in server listening on SSL port while SSL handshaking, client
Problem :- If you are facing similar error while configuring ssl on nginx server. below solution would be useful to solve it. no “ssl_certificate” is defined in server listening on SSL port while SSL handshaking, client: xxx.xxx.xxx.xxx, server: 0.0.0.0:443 Solution:- you should need to add following to nginx server block listen 443 default_server ssl; example:- …