View Single Post
  #13  
Old 02-05-2018, 03:32
Elesty Elesty is offline
Friend
 
Join Date: Feb 2017
Posts: 9
Rept. Given: 0
Rept. Rcvd 0 Times in 0 Posts
Thanks Given: 9
Thanks Rcvd at 14 Times in 5 Posts
Elesty Reputation: 0
The alternative is to use online license servers (Google for "idea license server").
New versions seem to block the known online URLs.

As workaround, reverse proxy such as nginx can be configured such as below (set hxxp://localhost:8888 as license server):

server {
listen 8888;
server_name localhost;
location / {
proxy_pass HXXP://LICENSE_SERVER;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
}
Reply With Quote