logo
0
0
WeChat Login

Jrebel Active Server

Download 下载 (Win,Linux,Mac)

Test Server

请手动添加 http://.

  • 117.50.194.13:12345

Example:

117.50.194.13:12345/524f1d03-d1d8-5e94-a099-042736d40bd9

Dev Server Address

Offline days set to 180.

  • 117.50.194.13:12346

编译

  • GOOS
    • linux
    • windows
    • darwin : 苹果系统
  • GOARCH:
    • amd64 : 64位
    • 386: : 32位

Win编译

Cmd:

SET CGO_ENABLED=0
SET GOOS=linux
SET GOARCH=amd64
go build ./

Mac编译

CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ./

运行

默认端口: 12345

# 自定义端口
./license-active-server --port=5555
# index page show as https
./license-active-server --port=5555 --exportSchema=https --exportHost=jrebel.domain.com

docker

Pull Image

docker pull yuxiaoyao520/jrebel-license-active-server:latest

Run

docker run -p 12345:12345 --name jrebel-license-active-server yuxiaoyao520/jrebel-license-active-server:latest

docker-compose

Simple

docker-compose.yml

services:
  jrebel-license-active-server:
    image: yuxiaoyao520/jrebel-license-active-server:latest
    container_name: jrebel-license-active-server
    ports:
      - "12345:12345"

Add Run Args

docker-compose.yml

services:
  jrebel-license-active-server:
    image: yuxiaoyao520/jrebel-license-active-server:latest
    container_name: jrebel-license-active-server
    command: ./jrebel-license-active-server --port=5555 --exportSchema=https --exportHost=jrebel.domain.com
    ports:
      - "5555:5555"

Custom Build Image

docker build -t jrebel-license-active-server .

Test Run

docker run --rm -p 12345:12345 jrebel-license-active-server:latest

About

JRebel and XRebel active server(Jrebel 激活服务器)

Language
Go98.2%
Dockerfile1.8%