Add document layout (#260)
continuous-integration/drone/push Build is passing

This commit is contained in:
neveler
2025-10-03 06:31:00 +08:00
committed by GitHub
parent 94ded37d48
commit c94f68992b
43 changed files with 159 additions and 213 deletions
+3 -4
View File
@@ -1,13 +1,12 @@
---
title: "模组包报错排查手册"
title: 模组包报错排查手册
permalink: /modpack/error-handbook.html
date: 2025-05-24 13:39:36 +0800
date: 2025-05-24 13:39:36 +0800
categories: 整合包
note: 本文由 LIPiston 编写。
toc: true
---
> 本文由 LIPiston 编写。
## 文件夹结构
首先我们需要先认识Minecraft的文件夹结构
+3 -4
View File
@@ -1,13 +1,12 @@
---
title: "整合包自带 Java 教程"
title: 整合包自带 Java 教程
permalink: /modpack/bundled-java.html
date: 2021-10-09 23:18:02 +0800
date: 2021-10-09 23:18:02 +0800
categories: 整合包
hits: true
toc: true
---
![Hits](https://hits.zkitefly.eu.org/?tag=https%3A%2F%2Fdocs.hmcl.net%2Fmodpack%2Fbundled-java.html)
## 背景
想必有些服务器主为此头疼了许久。由于玩家的电脑环境多变,甚至可能仍然有安装着 Java 7 的电脑而无法启动 1.12.2 以上的游戏或者含有 Mod 的客户端。因此服务器主希望能在整合包中自带一个 Java 运行时(或者叫 JRE),从而取代电脑自带的 JVM。接下来本文将介绍两种方法。
+4 -6
View File
@@ -1,15 +1,13 @@
---
title: "服务端自动更新整合包制作教程"
title: 服务端自动更新整合包制作教程
permalink: /modpack/serverpack.html
date: 2021-08-22 23:18:02 +0800
date: 2021-08-22 23:18:02 +0800
categories: 整合包
note: 本文由 huanghongxun 编写。
hits: true
toc: true
---
![Hits](https://hits.zkitefly.eu.org/?tag=https%3A%2F%2Fdocs.hmcl.net%2Fmodpack%2Fserverpack.html)
> 本文由 huanghongxun 编写。
HMCL 允许服务器管理员借助服务端自动更新整合包来实现自动分发整合包更新,这将大大方便有需要频繁更新游戏客户端 Mod、配置等信息的服务器管理员。
HMCL 需要服务器管理员额外提供一个 HTTP 服务器(只需要能提供静态文件服务,比如 Apache 和 Nginx 皆可)来提供检查整合包更新并允许 HMCL 下载更新文件。
+3 -4
View File
@@ -1,13 +1,12 @@
---
title: "使用HMCL启动器配置服务器客户端自动更新"
title: 使用HMCL启动器配置服务器客户端自动更新
permalink: /modpack/serverpack2.html
date: 2021-08-22 23:18:02 +0800
date: 2021-08-22 23:18:02 +0800
categories: 整合包
hits: true
toc: true
---
![Hits](https://hits.zkitefly.eu.org/?tag=https%3A%2F%2Fdocs.hmcl.net%2Fmodpack%2Fserverpack2.html)
## 备注
> 文章原作者:[hy黑影](https://www.mcbbs.net/home.php?mod=space&uid=3051111)
+5 -6
View File
@@ -1,16 +1,15 @@
---
title: "Nginx作为静态资源服务器,使用HMCL启动器配置服务器客户端自动更新"
title: Nginx作为静态资源服务器,使用HMCL启动器配置服务器客户端自动更新
permalink: /modpack/serverpack3.html
date: 2023-01-11 14:13:45 +0800
date: 2023-01-11 14:13:45 +0800
categories: 整合包
note: 本文由 buggzd 编写。
hits: true
toc: true
---
![Hits](https://hits.zkitefly.eu.org/?tag=https%3A%2F%2Fdocs.hmcl.net%2Fmodpack%2Fserverpack3.html)
> 阅读本文前,请先阅读HMCL官方文章:https://docs.hmcl.net/modpack/serverpack.html
> 本文由 buggzd 编写。
> 阅读本文前,请先阅读HMCL官方文章:https://hmcl.huangyuhui.net/help/launcher/serverpack.html
# 前置知识
阅读本文你需要具有以下知识储备:
1. 掌握基础本的linux命令操作,比如cd,ls等指令。