mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 16:55:59 +03:00
[GH-ISSUE #3302] How to setup https? #1094
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#1094
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @william-ewebs on GitHub (Aug 30, 2023).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/3302
How to setup https?
Is there any tutorial or guide?
I don't know how to do this, please help me!
Thanks
@SamJakob commented on GitHub (Sep 5, 2023):
I would recommend using
nginxas a reverse proxy for SSL termination. So set up hoppscotch in HTTP mode (on some random firewalled port) and then set up nginx and configure nginx to forward requests to it. Incidentally, this is my recommended way for setting up the proxy server with HTTPS.Doing so is very well supported in principle as such a technique is done by a large portion of the industry for any and all web applications and doing this will give you high levels of flexibility (particularly if you wanted to host multiple web services on one IP/domain and port).
You can read about how this works here: https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/