We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
配置已加白的特定 https 证书的反向代理服务,使用该 https 的域名即可直连访问
通过本机 host 或路由器 dns 配置将 local.xiaomusic.f-loat.site 解析到 xiaomusic 服务所在的机器 ip 上
local.xiaomusic.f-loat.site
xiaomusic
ping local.xiaomusic.f-loat.site
http://local.xiaomusic.f-loat.site:8090
使用 nginx 等服务配置 https 反向代理,监听端口仅 443/8090/9099 可用,配置参考如下
https://local.xiaomusic.f-loat.site
server { listen 443 ssl; server_name local.xiaomusic.f-loat.site; location / { proxy_pass http://IP:PORT; } ssl_certificate /opt/homebrew/etc/nginx/keys/local.xiaomusic.f-loat.site.pem; ssl_certificate_key /opt/homebrew/etc/nginx/keys/local.xiaomusic.f-loat.site.key; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
背景
解决方案
配置已加白的特定 https 证书的反向代理服务,使用该 https 的域名即可直连访问
配置步骤
通过本机 host 或路由器 dns 配置将
local.xiaomusic.f-loat.site
解析到xiaomusic
服务所在的机器 ip 上ping local.xiaomusic.f-loat.site
来验证是否生效http://local.xiaomusic.f-loat.site:8090
应该可以打开xiaomusic
服务的后台页面使用 nginx 等服务配置 https 反向代理,监听端口仅 443/8090/9099 可用,配置参考如下
https://local.xiaomusic.f-loat.site
打开xiaomusic
服务的后台页面https://local.xiaomusic.f-loat.site
即可正常使用备注
The text was updated successfully, but these errors were encountered: