nginx反向代理激活最新版本idea

由于最新版本采用动态域名封禁,因此license server失效。首先推荐大家有能力的还是支持正版。请点击https://www.jetbrains.com/idea/buy/购买正版。其次可以通过nginx反向代理激活。理论上任何反向代理方式应该都可以。

  • mac安装nginx
brew install nginx  
  • 修改配置
vim /usr/local/etc/nginx/nginx.conf
server {
listen 8888;
server_name localhost;

location ^~ / {
    proxy_pass http://idea.imsxm.com;
    }
}
  • 启动nginx
sudo nginx 
  • 激活输入http://localhost:8888即可

  • 停止nginx

ps -ef|grep nginx
kill -9 主进程号(带master那个)

imsxm有提供Go语言版本的反向代理方式http://www.imsxm.com/2017/12/go-active-proxy-tool.html

你可能感兴趣的:(nginx)