gpt4 book ai didi

ssl - 安装ssl证书 Nginx 443端口拒绝连接

转载 作者:太空宇宙 更新时间:2023-11-03 13:09:04 26 4
gpt4 key购买 nike

我已经安装了我的证书并配置了我的 nginx 以监听端口 443。但仍然无法连接到端口 443。缺少什么??

在我的 ssl.conf 中

HTTPS 服务器配置

#

server {
listen 443 ssl;
server_name www.newbullets.co.nz newbullets.co.nz;

ssl on;
ssl_certificate /etc/ssl/certs/ssl-bundle.crt;
ssl_certificate_key /etc/ssl/server.key;

ssl_session_timeout 5m;


#location / {
# root html;
# index index.html index.htm;
#}

和默认配置

server {
listen 80;
server_name newbullets.co.nz www.newbullets.co.nz;
#charset koi8-r;
#access_log logs/host.access.log main;

location / {
auth_basic "input you user name and password";
auth_basic_user_file /var/www/www.newbullets.co.nz/.htpasswd;
root /usr/share/nginx/html/nb/;
index index.html index.htm index.php;
try_files $uri $uri/ @handler;
}

更新

我在我的 ssl.conf 中添加了以下内容,现在在 Firefox 中它显示了该网页,但 SSL 绿色条消失了,而 Chrome 仍在下载该网页。有什么想法吗?

 location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html/nb$fastcgi_script_name;
fastcgi_param MAGE_RUN_CODE default;
fastcgi_param MAGE_RUN_TYPE store;
include fastcgi_params;
}

最佳答案

  1. 检查您的防火墙并确保端口 443 已打开。通常默认的防火墙配置不会打开 443 和 80。
  2. 确保调用 ssl.conf 时包含来自某处的包含。我已经对一个似乎正确的非功能性配置大打出手,只是发现它根本没有被包含和加载。
  3. 将“listen”指令更改为:listen 443 default_server ssl;

关于ssl - 安装ssl证书 Nginx 443端口拒绝连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20669404/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com