Skip to content

Commit

Permalink
1.164.328
Browse files Browse the repository at this point in the history
  • Loading branch information
deploy-luminati committed Dec 9, 2019
1 parent a654f98 commit 8d128b5
Show file tree
Hide file tree
Showing 25 changed files with 3,365 additions and 2,440 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
Luminati Proxy manager - Change Log

## 1.164.328 Stable
- :star: Added support for generating custom certificates

## 1.164.164 Stable
- :sparkles: app.less stylesheet split per page/component

Expand Down
2 changes: 1 addition & 1 deletion README-zh-CN.md
Expand Up @@ -36,7 +36,7 @@
- <a href="https://nodejs.org/en/download/">Node.js</a> 6+版

### Windows
下载 <a href="https://lum-lpm.com/static/lpm/luminati-proxy-manager-v1.164.164-setup.exe">代理管理安装器</a>.
下载 <a href="https://lum-lpm.com/static/lpm/luminati-proxy-manager-v1.164.328-setup.exe">代理管理安装器</a>.

### Linux/MacOS
- 安装 Node.js 10.15.3版 (最好用x
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -33,7 +33,7 @@ Please report issues or bugs to your Luminati account manager or from our [help
## Installation

### Windows
Download the [Luminati Proxy Manager installer](https://github.com/luminati-io/luminati-proxy/releases/download/v1.164.164/luminati-proxy-manager-v1.164.164-setup.exe)
Download the [Luminati Proxy Manager installer](https://github.com/luminati-io/luminati-proxy/releases/download/v1.164.328/luminati-proxy-manager-v1.164.328-setup.exe)

### Linux/MacOS - Install script
- Run the setup script to install
Expand Down
14 changes: 14 additions & 0 deletions bin/cert_gen.sh
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# LICENSE_CODE ZON ISC
openssl req -x509 -sha256 -newkey rsa:4096 -keyout $1 \
-out $2 -days 365 -nodes \
-subj /C=IL/ST=IL/O=Luminati/CN=luminati.io \
-config <(cat /etc/ssl/openssl.cnf <(
cat <<-EOF
[req]
x509_extensions = v3_ca
[v3_ca]
keyUsage = keyCertSign
extendedKeyUsage = serverAuth, clientAuth, codeSigning
EOF
))
2 changes: 1 addition & 1 deletion bin/lpm_install.sh
Expand Up @@ -7,7 +7,7 @@ if [ $(id -u) = 0 ]; then
IS_ROOT=1
fi
LUM=0
VERSION="1.164.164"
VERSION="1.164.328"
if [ -f "/usr/local/hola/zon_config.sh" ]; then
LUM=1
fi
Expand Down

0 comments on commit 8d128b5

Please sign in to comment.