Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
It looks like the /etc/nginx/certificate/nginx-certificate.crt and the certificate key are missing. You would need to go to your SSL vendor and get your SSL key and certificate and add them to your server in each cert file respectively.
In the meantime, what you could do is configure your Nginx so that it could handle HTTP traffic by removing the server block for port 443 and updating the one for port 80:
server {
listen 80;
listen [::]:80;
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
root /var/www/api.kosherup.xyz/html;
index index.html index.htm index.nginx-debian.html;
server_name *.kosherup.xyz;
location /socket.io {
proxy_pass http://localhost:4000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location /v1 {
proxy_pass http://localhost:4000;
}
}
Alternatively, if you don’t have your SSL certificate files, what you could do is use the above server block and then issue a new SSL by using Let’s Encrypt:
Let me know how it goes!
Best,
Bobby