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.
Heya, @peir
You can generate CSR via the command line using the openssl or via any website like https://csrgenerator.com/
You will be prompted to enter details for your domain. Here’s how to fill it out:
CA for Canada).pier.ca.If you run the command via command line:
openssl req -new -key pier.ca.key -out pier.ca.csr
The CSR will be saved in the file pier.ca.csr in the directory where you ran the command.
If the CSR is generated online using site like the one I’ve mentioned you will be prompted with the CSR and you can copy-paste it locally or to rebel.com directly.
Hope that this helps!
Hi there,
There was a similar quesiton about this here:
There’s not going to be a tutorial that specific, but the process is relative. There is a tutorial that you can use here:
An alternative approach is to use the openssl command:
openssl req -new -newkey rsa:2048 -nodes -keyout pier.ca.key -out pier.ca.csr
pier.ca.key → This is your private key (keep this safe and never share it).pier.ca.csr → This is the file you’ll upload to Rebel to request your SSL certificate.You’ll be prompted to enter some details, make sure to fill them up correctly.
Or alternatively you could use an online CSR generator like this one here:
Hope that helps!
- Bobby