从零开始3分钟解决软件更新,支持RAR

tech2026-04-14  6

从零开始3分钟解决软件更新,支持RAR

202094日14:21  吉他手

一.下载nginx 并进行如下设置

1.设置 nginx.conf   文件

 server {

        listen       8085;

        server_name  localhost;

        location / {

            root   html;

            index  index.html index.htm;

        }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

        location /Update {

alias  D:\Update;

allow all;

autoindex on;

}

    }

2.设置更新目录和要更新的文件

3.设置更新项目

启动服务器  start nginx

4.下载更新客户端 Upgrader.exe 并双击运行 指定URL:   http://192.168.254.125:8085

5.点击更新,点击是,点击确定

6.点击关闭.大功告成!!

Upgrader.exe 下载

最新回复(0)