Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 贡献导引

请严格按照以下步骤操作,如有任何问题,请提出 issue

* 在 GitHub 上点击 `fork` 将本仓库 fork 到自己的仓库,如 `yourname/nginx-docs`,然后 `clone` 到本地。

```sh
$ git clone [email protected]:yourname/nginx-docs.git
$ cd nginx-docs
# 将项目与上游关联
$ git remote add source [email protected]:DocsHome/nginx-docs.git
```

* 增加内容或者修复错误后提交,并推送到自己的仓库。

```sh
$ git add .
$ git commit -a "Fix issue #1: change helo to hello"
$ git push origin/master
```

* 在 GitHub 上提交 `pull request`。

* 请定期更新自己仓库内容。

```sh
$ git fetch source
$ git rebase source/master
$ git push -f origin master
```

# 排版规范

本项目排版遵循 [中文排版指南](https://github.com/mzlogin/chinese-copywriting-guidelines) 规范。
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# Nginx 中文文档

[![GitHub stars](https://img.shields.io/github/stars/DocsHome/nginx-docs.svg?style=social&label=Stars)](https://github.com/DocsHome/nginx-docs) [![GitHub contributors](https://img.shields.io/github/contributors/DocsHome/nginx-docs.svg)](https://github.com/DocsHome/nginx-docs) [![GitHub pull requests](https://img.shields.io/github/issues-pr/DocsHome/nginx-docs.svg)](https://github.com/DocsHome/nginx-docs) [![GitHub last commit](https://img.shields.io/github/last-commit/DocsHome/nginx-docs.svg)](https://github.com/DocsHome/nginx-docs)

![Nginx logo](https://nginx.org/nginx.png)

Nginx 官方文档中文翻译版,由本人在学习 nginx 时顺带翻译。因部分章节涉及到 Nginx Plus 或者其他内容,我将忽略该部分章节的内容。如果您发现内容存在错误或者不当之处,请提出 PR,期待您的加入。
Nginx 官方文档中文翻译版,由本人在学习 nginx 时顺带翻译。因部分章节涉及到 Nginx Plus 或者其他内容,我将忽略该部分章节的内容。

如果您发现内容存在错误或者不当之处,请提出 PR,期待您的加入:[如何贡献](CONTRIBUTING.md)。

在线阅读:[Github](SUMMARY.md)

## 排版规范
本文档排版遵循 [中文文案排版指北](https://github.com/mzlogin/chinese-copywriting-guidelines)。

本项目排版遵循 [中文排版指南](https://github.com/mzlogin/chinese-copywriting-guidelines) 规范。

## LICENSE

![知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议](https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png)

本作品采用[知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议](http://creativecommons.org/licenses/by-nc-sa/4.0/)进行许可。
1 change: 1 addition & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [贡献导引](CONTRIBUTING.md)
- [介绍](README.md)
- [安装 nginx](介绍/安装nginx.md)
- [初学者指南](介绍/初学者指南.md)
Expand Down