私はこの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
ていません
構成ファイルでは、すべてのリクエストがhttps
ここで何が起こっているのかに書き換えられます
- app.com に入るとサイトにアクセスできます。つまり、app.com 広告https://app.comを転送しています。
- nginx が動作していないことを意味するhttps://app.comにアクセスできません
上記の 2 つのシナリオのうち、正しいものはどれですか?
私には選択肢がありません。SSL証明書がインストールされていないことを示しているsslチェッカーで確認しました。
それでは、app.comに入るとアプリが機能するのはなぜですか?