docs: add zh-tw folder (#195)

Signed-off-by: appleboy <[email protected]>
Reviewed-on: https://gitea.com/gitea/docs/pulls/195
Reviewed-by: Lunny Xiao <[email protected]>
Co-authored-by: appleboy <[email protected]>
Co-committed-by: appleboy <[email protected]>
This commit is contained in:
appleboy
2025-04-04 23:28:16 +00:00
committed by Lunny Xiao
parent 3275094871
commit dbfa0ba454
835 changed files with 72590 additions and 5155 deletions
@@ -6,12 +6,11 @@ sidebar_position: 50
aliases:
- /zh-cn/windows-service
---
# 注册为Windows服务
# 注册为 Windows 服务
要注册为Windows服务,首先以Administrator身份运行 `cmd`,然后执行以下命令:
要注册为 Windows 服务,首先以 Administrator 身份运行 `cmd`,然后执行以下命令:
```
sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\""
@@ -19,11 +18,11 @@ sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\g
别忘了将 `C:\gitea` 替换成你的 Gitea 安装目录。
之后在控制面板打开 "Windows Services",搜索 "gitea",右键选择 "Run"。在浏览器打开 `http://localhost:3000` 就可以访问了。(如果你修改了端口,请访问对应的端口,3000是默认端口)。
之后在控制面板打开 "Windows Services",搜索 "gitea",右键选择 "Run"。在浏览器打开 `http://localhost:3000` 就可以访问了。(如果你修改了端口,请访问对应的端口,3000 是默认端口)。
## 从Windows服务中删除
## 从 Windows 服务中删除
以Administrator身份运行 `cmd`,然后执行以下命令:
Administrator 身份运行 `cmd`,然后执行以下命令:
```
sc delete gitea