After you configure nginx https, the site can not access the situation arise

Ali certificate from the cloud.

Nginx configuration is as follows

server {
    listen  443;
    server_name  package.oeynet.com;
    root /server/wwwroot/package_v1/Public;
    ssl on;
    ssl_certificate   /server/certs/package.oeynet.com/214082784100471.pem;
    ssl_certificate_key  /server/certs/package.oeynet.com/214082784100471.key;
    ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; location / { index index.html index.htm index.php l.php; # autoindex on; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } } location ~ \.php(.*)$ { fastcgi_pass 127.0.0.1:9000; fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; include fastcgi_params; } location ~* \.(png|jpeg|jpg|bmp|gif|ico|js|css|scss){ expires 3d; } } server { listen 80; server_name package.oeynet.com; rewrite ^(.*)$ https://$host$1 permanent; } 

And made a jump of 80 ports found any course can not be accessed. View 443 port, found also listen state.

Finally, my local wget and found the download page, but outside the network can not access, then I am sure that the firewall out of the ghost.
Take a look at firewalld, debugging again, a successful visit.

 
image.png
 
image.png


Author: Godtoy
link: https: //www.jianshu.com/p/b3d8b4145e8c
Source: Jane book
Jane book copyright reserved by the authors, are reproduced in any form, please contact the author to obtain authorization and indicate the source.

Guess you like

Origin www.cnblogs.com/gongxianjin/p/11266044.html