欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

使用nginx代理更新ubuntu的apt和elasticsearch

时间:2023-05-03
名称定义

ProxyServer: 能上外网的服务器有2个IP,其中内网IP是192.168.0.10

Client: 不能上外网,希望通过ProxyServer进行更新的客户机,可以与ProxyServer连通。

配置ProxyServer

安装nginx(不在这里介绍)

增加一个nginx的子配置文件proxy_conf/proxys.conf:

cd /usr/local/nginx/confsudo mkdir proxy_conf && cd proxy_conftouch proxys.conf

用你喜欢的编辑器编辑proxys.conf

server { server_name localhost; # ubuntu的代理 listen 9981; location / { proxy_pass http://mirrors.aliyun.com/ ; } # elasticsearch的代理 listen 9982; location / { proxy_pass https://artifacts.elastic.co/ ; } }

将proxys.conf的内容增加到nginx的配置中,打开/usr/local/nginx/conf/nginx.conf

...http { ... server { ... } # 在此处增加刚才编辑的proxy配置 include proxy_conf/*.conf; }

重启nginx,代理服务器设置完成。 配置Client 1、配置ubunt apt的代理

(1) 打开/etc/apt/sources.list(注意备份)。

(2) 查找文本内容http://archive.ubuntu.com,替换为 http://192.168.0.10:9981

2、配置elasticsearch的代理

(1) 打开/etc/apt/sources.list.d/elastic-7.x.list(注意备份)。

(2) 查找文本内容http://artifacts.elastic.co,替换为 http://192.168.0.10:9982

(3) 执行下面的命令添加elasticsearch的KEY

​ (参考[Install Elasticsearch with Debian Package | Elasticsearch Guide 8.0] | Elastic)

wget -qO - http://192.168.0.10:9982/GPG-KEY-elasticsearch | sudo apt-key add -

4、更新

sudo apt update

参考链接:

看完这篇还不了解Nginx服务器配置,那我要哭了 - 简书 (jianshu.com)

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。