Re: domain only reachable with https:// in front

2017-11-28 Thread pstnta
ahhh that's right, thanks for all your help guys ! Posted at Nginx Forum: https://forum.nginx.org/read.php?2,277546,277561#msg-277561 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: domain only reachable with https:// in front

2017-11-28 Thread Richard Stanway via nginx
Your ISP is blocking port 80, so you cannot get redirected to HTTPS. http://www.dslreports.com/faq/11852 On Tue, Nov 28, 2017 at 6:17 PM, Jeff Dyke wrote: > I think it is unfortunate that certbot does it this way, with an if > statement, which i believe is evaluated in every request. I use some

Re: domain only reachable with https:// in front

2017-11-28 Thread Jeff Dyke
I think it is unfortunate that certbot does it this way, with an if statement, which i believe is evaluated in every request. I use something like the following (with your names): server { listen 80 default_server; listen [::]:80 default_server; server_name pstn.host www.pstn.host; return

Re: domain only reachable with https:// in front

2017-11-28 Thread pstnta
hi, thanks for answering, shouldn't that forward everything to https? so shouldn't it work with just pstn.host? instead of https://pstn.host Posted at Nginx Forum: https://forum.nginx.org/read.php?2,277546,277548#msg-277548 ___ nginx mailing list ngi

Re: domain only reachable with https:// in front

2017-11-28 Thread Alexander Naumann
n: "pstnta" An: nginx@nginx.org Gesendet: Dienstag, 28. November 2017 17:27:57 Betreff: domain only reachable with https:// in front Hi, I'm using nginx as reverse proxy for guacamole, I can only reach my domain with https://pstn.host or https://www.pstn.host, it won't wo

domain only reachable with https:// in front

2017-11-28 Thread pstnta
Hi, I'm using nginx as reverse proxy for guacamole, I can only reach my domain with https://pstn.host or https://www.pstn.host, it won't work without https or with even with https. here's my sites-enabled/pstn.host https://pastebin.com/raw/dKiEi72q any ideas what's wrong or missing? thanks! Po