add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/nginx.md Normal file
View File

@@ -0,0 +1,24 @@
# nginx
> Nginx 网络服务器。
> 更多信息:<https://nginx.org/en/>.
- 使用默认配置文件启动服务器:
`nginx`
- 使用自定义配置文件启动服务器:
`nginx -c {{configuration_file}}`
- 使用配置文件中所有相对路径的前缀启动服务器:
`nginx -c {{configuration_file}} -p {{prefix/for/relative/paths}}`
- 测试配置而不影响正在运行的服务器:
`nginx -t`
- 通过发送信号重新加载配置,无需停机:
`nginx -s reload`