配置yum代理

一.说明

很多内网环境无法使用yum

二.配置

1.安装nginx

2.配置

    server {
        listen 808;
        #禁用multipart range功能
        max_ranges 1;
        server_name 1.1.1.1; #本地地址
        server_tokens off;

        location / {
            access_log /var/log/mirrors.log;
            proxy_pass http://mirrors.aliyun.com;
        }
    }

3.添加yum代理(内网机器)
vim /etc/yum.conf

proxy=http://1.1.1.1:808
上一篇:健身也内卷?这届网友用 Python 掌握了做标准俯卧撑的秘诀


下一篇:anaconda老版本下载的方法(和Python)