mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 16:15:49 -06:00
[GH-ISSUE #69] How to config https with letsencrypt? #29
Labels
No labels
In Progress
WIP
WaitingForInfo
bug
doc
duplicate
easy
enhancement
future
help wanted
invalid
lifecycle/stale
need-issue-template
need-usage-help
no plan
proposal
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/frp#29
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 @se77en on GitHub (Aug 12, 2016).
Original GitHub issue: https://github.com/fatedier/frp/issues/69
help wanted.
@wxyzh commented on GitHub (Aug 13, 2016):
1,看了下配置文件,https好像是要在后端web服务器上设置。
2,是否可以在frps上直接应用证书?
@se77en commented on GitHub (Aug 14, 2016):
I put frp server side to a Docker image and run it by some port forward. eg:
docker run -d -p 8080:80 -p 8081:443 -p 7000:7000 -p 7500:7500 frp. And use Nginx with Letsencrypt on server side and pass proxy to frp docker image, work well for me.将 frp 服务端放在一个 Docker 镜像中,然后运行,比如:
docker run -d -p 8080:80 -p 8081:443 -p 7000:7000 -p 7500:7500 frp。然后在服务端使用 Nginx 和 Letsencrypt,把请求转发到 Docker 镜像中。亲测可用~