NGINX SSL Timeout

后端 未结 3 1763
盖世英雄少女心
盖世英雄少女心 2021-02-07 00:21

Runnning NGINX SSL and the browser continues to timeout.

Here is my NGINX conf file:

worker_processes  4;
error_log /var/log/nginx/error.log;
pid /var/r         


        
相关标签:
3条回答
  • 2021-02-07 01:10

    Maybe 443 port is closed on your server? Check this with http://www.yougetsignal.com/tools/open-ports/

    0 讨论(0)
  • 2021-02-07 01:14

    I agree with Klen´s answer, and I would add more.

    First, go and check that your port 443 is open in http://www.yougetsignal.com/tools/open-ports/

    If it´s closed, go to your aws console, select your instance and go to description -> security groups -> launch_wizard-1

    Then click on edit -> Add Rule

    Select HTTPS from the options and you should see this

    0 讨论(0)
  • 2021-02-07 01:25

    There are several thing to check out

    #1: Check if https allow in your ubuntu server

    sudo ufw allow https && sudo ufw enable
    

    #2: Check if port 443 in open

    0 讨论(0)
提交回复
热议问题