Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
1d022e25
Commit
1d022e25
authored
Oct 09, 2018
by
wojiushixiaobai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新1.4.2
parent
ab01e344
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
66 additions
and
6 deletions
+66
-6
change_log.rst
docs/change_log.rst
+7
-0
distributed_02.rst
docs/distributed_02.rst
+9
-1
setup_by_centos7.rst
docs/setup_by_centos7.rst
+9
-1
setup_by_local.rst
docs/setup_by_local.rst
+8
-0
setup_by_ubuntu.rst
docs/setup_by_ubuntu.rst
+9
-1
step_by_step.rst
docs/step_by_step.rst
+9
-1
upgrade.rst
docs/upgrade.rst
+15
-2
No files found.
docs/change_log.rst
View file @
1d022e25
...
...
@@ -256,3 +256,10 @@
* 增加ssh用户黑名单和白名单
* luna支持搜索支持IP
* 优化一些内容
1.4.2
------------------------
2018年10月8日
* 支持web sftp,支持跨资产复制粘贴文件
* 优化一些内容
docs/distributed_02.rst
View file @
1d022e25
...
...
@@ -52,7 +52,7 @@
# 下载 luna
$ cd /opt
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
1
/luna.tar.gz
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
2
/luna.tar.gz
$ tar xvf luna.tar.gz
$ chown -R root:root luna
...
...
@@ -188,6 +188,14 @@
# proxy_next_upstream http_500 http_502 http_503 http_504 http_404;
}
location /coco/ {
proxy_pass http://cocows/coco/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off;
}
location /guacamole/ {
proxy_pass http://guacamole/; # guacamole
proxy_buffering off;
...
...
docs/setup_by_centos7.rst
View file @
1d022e25
...
...
@@ -301,7 +301,7 @@ CentOS 7 安装文档
# 安装 Web Terminal 前端: Luna 需要 Nginx 来运行访问 访问(https://github.com/jumpserver/luna/releases)下载对应版本的 release 包,直接解压,不需要编译
$ cd /opt
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
1
/luna.tar.gz
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
2
/luna.tar.gz
$ tar xvf luna.tar.gz
$ chown -R root:root luna
...
...
@@ -351,6 +351,14 @@ CentOS 7 安装文档
access_log off;
}
location /coco/ {
proxy_pass http://localhost:5000/coco/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off;
}
location /guacamole/ {
proxy_pass http://localhost:8081/; # 如果docker安装在别的服务器, 请填写它的ip
proxy_buffering off;
...
...
docs/setup_by_local.rst
View file @
1d022e25
...
...
@@ -355,6 +355,14 @@ CentOS 7 组件离线安装文档
access_log off;
}
location /coco/ {
proxy_pass http://localhost:5000/coco/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off;
}
location /guacamole/ {
proxy_pass http://localhost:8081/; # 如果docker安装在别的服务器, 请填写它的ip
proxy_buffering off;
...
...
docs/setup_by_ubuntu.rst
View file @
1d022e25
...
...
@@ -370,7 +370,7 @@ Luna 已改为纯前端,需要 Nginx 来运行访问
::
$ cd /opt/
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
1
/luna.tar.gz
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
2
/luna.tar.gz
$ tar xvf luna.tar.gz
$ chown -R root:root luna
...
...
@@ -461,6 +461,14 @@ Luna 已改为纯前端,需要 Nginx 来运行访问
access_log off;
}
location /coco/ {
proxy_pass http://localhost:5000/coco/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off;
}
location /guacamole/ {
proxy_pass http://localhost:8081/; # 如果guacamole安装在别的服务器,请填写它的ip
proxy_buffering off;
...
...
docs/step_by_step.rst
View file @
1d022e25
...
...
@@ -406,7 +406,7 @@ Luna 已改为纯前端,需要 Nginx 来运行访问
::
$ cd /opt
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
1
/luna.tar.gz
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
2
/luna.tar.gz
$ tar xvf luna.tar.gz
$ chown -R root:root luna
...
...
@@ -508,6 +508,14 @@ Luna 已改为纯前端,需要 Nginx 来运行访问
access_log off;
}
location /coco/ {
proxy_pass http://localhost:5000/coco/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off;
}
location /guacamole/ {
proxy_pass http://localhost:8081/; # 如果guacamole安装在别的服务器,请填写它的ip
proxy_buffering off;
...
...
docs/upgrade.rst
View file @
1d022e25
...
...
@@ -52,7 +52,20 @@
$ cd ../utils && sh make_migrations.sh
$ cd ../ && ./jms start all
# 任意版本升级到 1.4.2 版本,需要修改 nginx 配置
$ vim /etc/nginx/conf.d/jumpserver.conf
...
location /coco/ {
proxy_pass http://localhost:5000/coco/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off;
}
...
2. 升级 Coco(如果是新开的终端,别忘了 source /opt/py3/bin/activate)
::
...
...
@@ -76,7 +89,7 @@
::
$ cd /opt
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
1
/luna.tar.gz
$ wget https://github.com/jumpserver/luna/releases/download/1.4.
2
/luna.tar.gz
$ tar xvf luna.tar.gz
$ chown -R root:root luna
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment