为本地 HTTP 服务启用 HTTPS

通过 https2http 插件可以让本地 HTTP 服务转换成 HTTPS 服务对外提供。

  1. frps.ini 内容如下:

    1. [common]
    2. bind_port = 7000
  2. frpc.ini 内容如下:

    1. [common]
    2. server_addr = x.x.x.x
    3. server_port = 7000
    4. [test_htts2http]
    5. type = https
    6. custom_domains = test.yourdomain.com
    7. plugin = https2http
    8. plugin_local_addr = 127.0.0.1:80
    9. # HTTPS 证书相关的配置
    10. plugin_crt_path = ./server.crt
    11. plugin_key_path = ./server.key
    12. plugin_host_header_rewrite = 127.0.0.1
    13. plugin_header_X-From-Where = frp
  3. 分别启动 frps 和 frpc。

  4. 通过浏览器访问 https://test.yourdomain.com

最后修改 March 19, 2021: update docs (f1b297a)