summaryrefslogtreecommitdiffstats
path: root/docs/content/doc/installation/run-as-service-in-ubuntu.zh-cn.md
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2022-07-28 03:22:47 +0200
committerGitHub <noreply@github.com>2022-07-28 09:22:47 +0800
commitae52df6a64477bcd5076ddddbee64bb22b3897a0 (patch)
tree2950725dedb126fdff5f65fdd66cd61329e8c806 /docs/content/doc/installation/run-as-service-in-ubuntu.zh-cn.md
parent6554d5197fa4082f3058ee880d2d6d80fbd97a56 (diff)
downloadgitea-ae52df6a64477bcd5076ddddbee64bb22b3897a0.tar.gz
gitea-ae52df6a64477bcd5076ddddbee64bb22b3897a0.zip
Add markdownlint (#20512)
Add `markdownlint` linter and fix issues. Config is based on the one from electron's repo with a few rules relaxed.
Diffstat (limited to 'docs/content/doc/installation/run-as-service-in-ubuntu.zh-cn.md')
-rw-r--r--docs/content/doc/installation/run-as-service-in-ubuntu.zh-cn.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/content/doc/installation/run-as-service-in-ubuntu.zh-cn.md b/docs/content/doc/installation/run-as-service-in-ubuntu.zh-cn.md
index 02cd032b67..c76350ecdc 100644
--- a/docs/content/doc/installation/run-as-service-in-ubuntu.zh-cn.md
+++ b/docs/content/doc/installation/run-as-service-in-ubuntu.zh-cn.md
@@ -18,6 +18,7 @@ menu:
#### systemd 方式
在 terminal 中执行以下命令:
+
```
sudo vim /etc/systemd/system/gitea.service
```
@@ -27,26 +28,29 @@ sudo vim /etc/systemd/system/gitea.service
修改 user,home 目录以及其他必须的初始化参数,如果使用自定义端口,则需修改 PORT 参数,反之如果使用默认端口则需删除 -p 标记。
激活 gitea 并将它作为系统自启动服务:
+
```
sudo systemctl enable gitea
sudo systemctl start gitea
```
-
#### 使用 supervisor
在 terminal 中执行以下命令安装 supervisor:
+
```
sudo apt install supervisor
```
为 supervisor 配置日志路径:
+
```
# assuming gitea is installed in /home/git/gitea/
mkdir /home/git/gitea/log/supervisor
```
在文件编辑器中打开 supervisor 的配置文件:
+
```
sudo vim /etc/supervisor/supervisord.conf
```
@@ -57,6 +61,7 @@ sudo vim /etc/supervisor/supervisord.conf
将 user(git) 和 home(/home/git) 设置为与上文部署中匹配的值。如果使用自定义端口,则需修改 PORT 参数,反之如果使用默认端口则需删除 -p 标记。
最后激活 supervisor 并将它作为系统自启动服务:
+
```
sudo systemctl enable supervisor
sudo systemctl start supervisor