ฉันมีปัญหาเดียวกัน ในกรณีของฉันฉันใช้ digitalocean และ nginx
ฉันได้ตั้งค่าโดเมน example.app และโดเมนย่อย dev.exemple.app ใน digitalocean เป็นครั้งแรก อย่างที่สองฉันซื้อใบรับรอง ssl สองฉบับจาก GoDaddy และสุดท้ายฉันกำหนดค่าโดเมนสองโดเมนใน nginx เพื่อใช้ใบรับรอง ssl สองตัวนี้กับ snipet ต่อไปนี้
การกำหนดค่าโดเมน example.app ของฉัน
server {
listen 7000 default_server;
listen [::]:7000 default_server;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
root /srv/nodejs/echantillonnage1;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name echantillonnage.app;
ssl_certificate /srv/nodejs/certificatSsl/widcardcertificate/echantillonnage.app.chained.crt;
ssl_certificate_key /srv/nodejs/certificatSsl/widcardcertificate/echantillonnage.app.key;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
proxy_pass http://127.0.0.1:8090;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
#try_files $uri $uri/ =404;
}
}
dev.example.app ของฉัน
server {
listen 7000 default_server;
listen [::]:7000 default_server;
listen 444 ssl default_server;
listen [::]:444 ssl default_server;
root /srv/nodejs/echantillonnage1;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name dev.echantillonnage.app;
ssl_certificate /srv/nodejs/certificatSsl/dev/dev.echantillonnage.app.chained.crt;
ssl_certificate_key /srv/nodejs/certificatSsl/dev/dev.echantillonnage.app.key;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
proxy_pass http://127.0.0.1:8091;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
#try_files $uri $uri/ =404;
}
}
เมื่อฉันเปิดตัวhttps://dev.echantillonnage.appฉันได้รับ
Fix CURL (51) SSL error: no alternative certificate subject name matches
ความผิดพลาดของฉันคือการร้องสองบรรทัด
listen 444 ssl default_server;
listen [::]:444 ssl default_server;
ฉันต้องเปลี่ยนสิ่งนี้เป็น:
listen 443 ssl;
listen [::]:443 ssl;