[GH-ISSUE #1892] How I install ssl certficate? #603

Closed
opened 2026-03-16 16:19:31 +03:00 by kerem · 3 comments
Owner

Originally created by @amraappvolution on GitHub (Oct 22, 2021).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/1892

I have to access website through https
How I set ssl certificate path on code?

Originally created by @amraappvolution on GitHub (Oct 22, 2021). Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/1892 I have to access website through https How I set ssl certificate path on code?
kerem closed this issue 2026-03-16 16:19:37 +03:00
Author
Owner

@liyasthomas commented on GitHub (Oct 22, 2021):

Hoppscotch web client doens't support sending SSL certificate to API endpoints at the moment.

<!-- gh-comment-id:949525237 --> @liyasthomas commented on GitHub (Oct 22, 2021): Hoppscotch web client doens't support sending SSL certificate to API endpoints at the moment.
Author
Owner

@amraappvolution commented on GitHub (Oct 25, 2021):

Hoppscotch web client doens't support sending SSL certificate to API endpoints at the moment.

I have domain, I have install ssl certificate on web server
I need to access website https://domainName:3000

<!-- gh-comment-id:950897635 --> @amraappvolution commented on GitHub (Oct 25, 2021): > Hoppscotch web client doens't support sending SSL certificate to API endpoints at the moment. I have domain, I have install ssl certificate on web server I need to access website https://domainName:3000
Author
Owner

@amraappvolution commented on GitHub (Oct 28, 2021):

I have replaced this simple code in nuxt.config.js

// Default: localhost
server: {
host: "0.0.0.0",
},

with this code to point out private.key and certificate.crt file

// Default: localhost
server: {
host: "0.0.0.0",
https: {
key: fs.readFileSync("/Applications/XAMPP/xamppfiles/etc/domain_path/private.key",'utf8'),
cert: fs.readFileSync("/Applications/XAMPP/xamppfiles/etc/domain_path/certificate.crt",'utf8'),
}
},

<!-- gh-comment-id:953668719 --> @amraappvolution commented on GitHub (Oct 28, 2021): I have replaced this simple code in nuxt.config.js // Default: localhost server: { host: "0.0.0.0", }, with this code to point out private.key and certificate.crt file // Default: localhost server: { host: "0.0.0.0", https: { key: fs.readFileSync("/Applications/XAMPP/xamppfiles/etc/domain_path/private.key",'utf8'), cert: fs.readFileSync("/Applications/XAMPP/xamppfiles/etc/domain_path/certificate.crt",'utf8'), } },
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#603
No description provided.