我有这个nginx配置
server {
listen 80;
server_name app.com www.app.com;
rewrite ^ https://$server_name$request_uri? permanent;
}
server {
listen 443;
server_name app.com www.app.com;
ssl on;
ssl_certificate /etc/nginx/ssl/app.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
location = /favicon.ico {
root /opt/myapp/app/programs/web.browser/app;
access_log off;
expires 1w;
}
location ~* "^/[a-z0-9]{40}\.(css|js)$" {
root /opt/myapp/app/programs/web.browser;
access_log off;
expires max;
}
location ~ "^/packages" {
root /opt/myapp/app/programs/web.browser;
access_log off;
}
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
}
并使用具有正常设置的mup部署到ec2
它已部署,我可以访问网站app.com
但是https://app.com
无效
as在配置文件中,所有请求都重写为https
这里发生了什么
以上两种情况中哪一项属实?
我没有选择。我检查了ssl检查器,他们显示没有安装ssl证书。
那么为什么我的应用程序在输入app.com时有效?
答案 0 :(得分:1)
我不是NGINX知识渊博但是看着我的工作生产配置我看到你没有包含的许多参数。
特别是,为了代理websocket连接,您可能需要在顶部使用以下内容:
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
除了您已经拥有的内容之外,我的443服务器还包括以下内容:
server {
ssl_stapling on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 5m;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
add_header Strict-Transport-Security "max-age=31536000;";
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto http;
proxy_set_header X-Nginx-Proxy true;
proxy_redirect off;
}
}
最后,我会尝试评论您的位置指令以进行错误检查。问题不应该与您的SSL证书有关,它仍然允许您访问(带有警告)自签名或配置错误的证书。希望这会有所帮助。
答案 1 :(得分:1)