diff --git a/README.en.md b/README.en.md
index 40257e5..c26ad16 100644
--- a/README.en.md
+++ b/README.en.md
@@ -184,27 +184,6 @@ docker pull gcr.your_domain_name/google-containers/pause:3.1
---
-**Regarding the scheme for pulling images from the Docker Hub public space without adding "library" when using an image acceleration**
-
-- This scheme was provided by a senior member in the communication group and has been implemented and tested through Nginx.
-```shell
-location ^~ / {
- if ($request_uri ~ ^/v2/([^/]+)/(manifests|blobs)/(.*)$) {
- rewrite ^/v2/(.*)$ /v2/library/$1 break;
- }
-
- proxy_pass http://127.0.0.1:51000;
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header REMOTE-HOST $remote_addr;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection $connection_upgrade;
- proxy_http_version 1.1;
- add_header X-Cache $upstream_cache_status;
-}
-```
-
> Detailed Tutorial: [Self-built Docker Image Acceleration Service: Accelerating and Optimizing Image Management](https://www.dqzboy.com/8709.html)
## 📚 Display
@@ -223,6 +202,23 @@ location ^~ / {
## 💻 UI

+
+---
+
+## 🫶 Sponsorship
+If you find this project helpful, please give it a Star. And if possible, you can also give me a little support. Thank you very much for your support.😊
+
+
+
+ | Alipay |
+ WeChat Pay |
+
+
+  |
+  |
+
+
+
---
## 👨🏻💻 Issue
@@ -242,23 +238,29 @@ location ^~ / {
#### 3、How long does the registry image cache last, and how to adjust it?
**Known Issue:** The default cache time is 168 hours, which is 7 days. Adjust the cache time by modifying the ttl in the proxy configuration section of the configuration file
+#### 4、Regarding the scheme for pulling images from the `Hub` public space without adding `library` when using an image acceleration
+
+- This scheme was provided by a senior member in the communication group and has been implemented and tested through Nginx.
+```shell
+location ^~ / {
+ if ($request_uri ~ ^/v2/([^/]+)/(manifests|blobs)/(.*)$) {
+ rewrite ^/v2/(.*)$ /v2/library/$1 break;
+ }
+
+ proxy_pass http://127.0.0.1:51000;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header REMOTE-HOST $remote_addr;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection $connection_upgrade;
+ proxy_http_version 1.1;
+ add_header X-Cache $upstream_cache_status;
+}
+```
+
---
-## 🫶 Sponsorship
-If you find this project helpful, please give it a Star. And if possible, you can also give me a little support. Thank you very much for your support.😊
-
-
-
- | Alipay |
- WeChat Pay |
-
-
-  |
-  |
-
-
-
-
## 😺 Other
Open Source is not easy, if you reference this project or make modifications based on it, could you please credit this project in your documentation? Thank you!
diff --git a/README.md b/README.md
index 515b60d..50b6115 100644
--- a/README.md
+++ b/README.md
@@ -185,7 +185,62 @@ docker pull gcr.your_domain_name/google-containers/pause:3.1
---
-**关于使用镜像加速拉取docker hub公共空间下的镜像时如何不添加library的方案**
+> 详细教程:[自建Docker镜像加速服务:加速与优化镜像管理](https://www.dqzboy.com/8709.html)
+
+## 📚 展示
+
+
+
+ | 系统环境检查 |
+ 服务部署安装 |
+
+
+  |
+  |
+
+
+
+## 💻 UI
+
+
+---
+
+
+## 🫶 赞助
+如果你觉得这个项目对你有帮助,请给我点个Star。并且情况允许的话,可以给我一点点支持,总之非常感谢支持😊
+
+> 项目作者自建公益服务:[服务地址查看](https://uk.dqzboy.com/)
+
+
+
+ | Alipay |
+ WeChat Pay |
+
+
+  |
+  |
+
+
+
+---
+## 👨🏻💻 问题
+
+#### 1、无法通过UI界面删除某一镜像的TAG
+**已知问题:** 使用`registry`作为代理缓存时不支持删除
+
+**issues:** [#3853](https://github.com/distribution/distribution/issues/3853)
+
+#### 2、搭建好了,但是国内拉取速度不理想
+**已知问题:** 你的国外服务器到国内的网络线路不理想
+
+**解决方案:**
+- (1) 开启服务器BBR,优化网络性能(效果有限)
+- (2) 更换对国内网络线路优化更好的服务器
+
+#### 3、registry 镜像缓存多少时间,如何调整
+**已知问题:** 默认缓存`168h`,也就是`7天`。修改配置文件`proxy`配置部分`ttl`调整缓存时间
+
+#### 4、使用镜像加速拉取`hub`公共空间下的镜像时如何不添加`library`
- 此方案来自交流群里大佬提供,通过nginx实现并实测
```shell
@@ -207,62 +262,8 @@ location ^~ / {
}
```
-> 详细教程:[自建Docker镜像加速服务:加速与优化镜像管理](https://www.dqzboy.com/8709.html)
-
-## 📚 展示
-
-
-
- | 系统环境检查 |
- 服务部署安装 |
-
-
-  |
-  |
-
-
-
-## 💻 UI
-
-
---
-## 👨🏻💻 问题
-
-#### 1、无法通过UI界面删除某一镜像的TAG
-**已知问题:** 使用`registry`作为代理缓存时不支持删除
-
-**issues:** [#3853](https://github.com/distribution/distribution/issues/3853)
-
-#### 2、搭建好了,但是国内拉取速度不理想
-**已知问题:** 你的国外服务器到国内的网络线路不理想
-
-**解决方案:**
-- (1) 开启服务器BBR,优化网络性能(效果有限)
-- (2) 更换对国内网络线路优化更好的服务器
-
-#### 3、registry 镜像缓存多少时间,如何调整
-**已知问题:** 默认缓存`168h`,也就是`7天`。修改配置文件`proxy`配置部分`ttl`调整缓存时间
-
----
-
-## 🫶 赞助
-如果你觉得这个项目对你有帮助,请给我点个Star。并且情况允许的话,可以给我一点点支持,总之非常感谢支持😊
-
-> 项目作者自建公益服务:[服务地址查看](https://uk.dqzboy.com/)
-
-
-
- | Alipay |
- WeChat Pay |
-
-
-  |
-  |
-
-
-
-
## 😺 其他
开源不易,若你参考此项目或基于此项目修改可否麻烦在你的项目文档中标识此项目?谢谢你!