Re: Problem with wildcard of domain in nginx and in https

2015-01-14 Thread Juriy Strashnov
It is a DNS (not a Nginx) problem. It seems that you have different "IN A" records for domain.com & www.domain.com On Wed, Jan 14, 2015 at 1:46 PM, ramsoft75 wrote: > I made a ping into www.domain.com and into domain.com, the Ip's are not > the > same. > > Posted at Nginx Forum: > http://forum.n

Re: Problem with wildcard of domain in nginx and in https

2015-01-14 Thread ramsoft75
I made a ping into www.domain.com and into domain.com, the Ip's are not the same. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,256099,256104#msg-256104 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Problem with wildcard of domain in nginx and in https

2015-01-14 Thread Steve Wilson
On 14/01/2015 10:30, ramsoft75 wrote: Isn't this ? server { listen 443 ssl spdy; server_name domain.com; ... } With that configuration if a go https://domains.com it gives me a error "webpage not avaiable" I'm guessing the above is a typo in the mail and that you're not actually trying

Re: Problem with wildcard of domain in nginx and in https

2015-01-14 Thread ramsoft75
Isn't this ? > server { > listen 443 ssl spdy; > > server_name domain.com; > > ... > } With that configuration if a go https://domains.com it gives me a error "webpage not avaiable" Posted at Nginx Forum: http://forum.nginx.org/read.php?2,256099,256102#msg-256102 __

Re: Problem with wildcard of domain in nginx and in https

2015-01-14 Thread Axel
Hello, Am Mittwoch, 14. Januar 2015, 04:34:34 schrieb ramsoft75: > I have a domain.com and i can redirecto to other subdomains but not > domain.com in https, my configuration is the following : > > server { > listen 80; > server_name www.domain.com; > rewrite ^/(.*) https://www.domai

Re: Problem with wildcard of domain in nginx and in https

2015-01-14 Thread ramsoft75
The problem is https://domain.com is not accessible Posted at Nginx Forum: http://forum.nginx.org/read.php?2,256099,256100#msg-256100 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Problem with wildcard of domain in nginx and in https

2015-01-14 Thread ramsoft75
I have a domain.com and i can redirecto to other subdomains but not domain.com in https, my configuration is the following : server { listen 80; server_name www.domain.com; rewrite ^/(.*) https://www.domain.com/$1 permanent; } server { listen 80; server_name m.domain.com;