美文网首页
jrebel 激活

jrebel 激活

作者: beer5214 | 来源:发表于2019-07-10 22:24 被阅读0次

    原文出处: https://www.hexianwei.com/2019/07/10/jrebel%E6%BF%80%E6%B4%BB/

    jrebel 激活 update 2019 。每次都去网上找激活码,找过来找过去就是那几个,有时候还失效。允悲 /苦瓜脸

    参考:JRebel 2018.1使用反代失败解决 and 撸了个反代工具, 可用于激活JRebel 。自己可以参考搭建一个!

    友情提示:http://xxx.com 的网站别点。千万别点!!!

    结果

    1. 获取激活码

    https://tools.hexianwei.com/#/tools/jrebel

    直接在页面点击 获取激活码。

    获取激活码
    1. 激活
    jrebel激活步骤

    步骤

    参考上面的两篇博客。我们知道 url 的格式为: http://{url}/{uuid}

    1. 配置反向代理
    反向代理设置

    所以:我们配置 nginx 的反向代理。

    server {
        listen 443 ssl;
        server_name jrebel.hexianwei.com;
    
        ssl on;
        ssl_certificate /etc/nginx/ssl/fullchain.cer;
        ssl_certificate_key /etc/nginx/ssl/hexianwei.key;
        ssl_session_timeout 5m;
    
            location / {
                    proxy_pass http://idea.lanyus.com:80;
            }
    }
    
    server{
            listen 80;
            server_name jrebel.hexianwei.com;
             return 301 https://jrebel.hexianwei.com$request_uri;
    
    }
    
    
    1. 返回 url + uuid 的 url
    public String getJrebelLicense() {
        String uuid = UUID.randomUUID().toString();
        return jrebelUrl + uuid;
    }
    
    1. 页面请求,展示

    相关文章

      网友评论

          本文标题:jrebel 激活

          本文链接:https://www.haomeiwen.com/subject/xbtlkctx.html