AMH 社区首页
AMH社区 - 开放自由有价值的社区
[求助帖] Nginx开启了SSL但是访问提示服务器拒绝了链接 |
|
---|---|
萧晔离 |
萧晔离 发表于 2015-01-23 15:36:56
server 以上是配置文件{ listen 443; #listen end server_name api.aoh.cc; #server_name end index index.html index.htm index.php; #index end ssl on; ssl_certificate /home/wwwroot/wechat/vhost/api.aoh.cc.crt; ssl_certificate_key /home/wwwroot/wechat/vhost/api.aoh.cc.key; set $subdomain ''; root /home/wwwroot/wechat/domain/api.aoh.cc/web$subdomain; include /home/wwwroot/wechat/rewrite/amh.conf; #rewrite end location ~ .*\.php$ { fastcgi_pass unix:/tmp/php-cgi-wechat-api.aoh.cc.sock; fastcgi_index index.php; include fcgi.conf; fastcgi_param DOCUMENT_ROOT /home/wwwroot/wechat/domain/api.aoh.cc/web$subdomain; fastcgi_param SCRIPT_FILENAME /home/wwwroot/wechat/domain/api.aoh.cc/web$subdomain$fastcgi_script_name; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp3|wma)$ { expires 30d; } location ~ .*\.(js|css)$ { expires 12h; } access_log /home/wwwroot/wechat/logs/api.aoh.cc-access.log combined; #access_log end error_log /home/wwwroot/wechat/logs/api.aoh.cc-error.log crit; #error_log end } server { listen 80; server_name api.aoh.cc; rewrite ^(.*) https://$server_name$1 permanent; } 80端口重定向到https 防火墙里也加了 -A INPUT -p tcp -m tcp --dport 443 -j ACCEPT 开放443端口 服务器也重启过了,但是访问https://api.aoh.cc还是服务器拒绝了链接。 阿里云ECS主机,开启了云盾。
点赞,加油! (0分)
2015-01-23 15:36:56 1
|
cs123456 |
阿里的谁用谁知道
回复
2015-01-23 15:44:41 2
|
萧晔离 |
回复
2015-01-23 15:48:19 3
|
cs123456 |
阿里的SLB,http用的是七层负载均衡,https走的SLB的四层负载均衡
https慢的很。
回复
2015-01-23 15:52:22 4
|
萧晔离 |
没开SLB,只是ECS。之前在杭州的ECS上开过,不过用的是WDCP面板。 这次在青岛的ECS上用了AMH,今天开两个域名的SSL都不行。
回复
2015-01-23 15:54:31 5
|