zodern / meteor-up

Production Quality Meteor Deployment to Anywhere
http://meteor-up.com/
MIT License
1.27k stars 280 forks source link

Why is SSL 500 not generating ca certificates correctly? #1167

Closed eugle closed 4 years ago

eugle commented 4 years ago

Mup redeployment and MUP Deploy are all unsuccessful. What is the cause? Why 500,thanks

# bitcalf.com
upstream bitcalf.com {
include /etc/nginx/vhost.d/bitcalf.com_upstream;
}
server {
        server_name bitcalf.com;
        listen 80 ;
        access_log /var/log/nginx/access.log vhost;
        include /etc/nginx/vhost.d/bitcalf.com;
        location / {
                proxy_pass http://bitcalf.com;
        }
}
server {
        server_name bitcalf.com;
        listen 443 ssl http2 ;
        access_log /var/log/nginx/access.log vhost;
        return 500;  //Why is SSL 500 not generating ca certificates correctly?
        ssl_certificate /etc/nginx/certs/default.crt;
        ssl_certificate_key /etc/nginx/certs/default.key;
}