https://github.com/shunyue1320/nginx-book
Nginx 官方文档中文翻译版
https://github.com/shunyue1320/nginx-book
book gitbook nginx
Last synced: 7 months ago
JSON representation
Nginx 官方文档中文翻译版
- Host: GitHub
- URL: https://github.com/shunyue1320/nginx-book
- Owner: shunyue1320
- License: mit
- Created: 2020-12-20T10:15:48.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-26T03:50:31.000Z (almost 5 years ago)
- Last Synced: 2025-01-30T09:24:10.895Z (8 months ago)
- Topics: book, gitbook, nginx
- Homepage: https://tsunyue1320.gitbook.io/nginx/v/main/
- Size: 242 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
## 安装
如果你没有安装 gitbook,则先使用 npm(或者 cnpm)安装 `gitbook-cli`:
```bash
npm install gitbook-cli -g
```进入项目根目录,执行以下命令运行 gitbook:
**安装依赖**
```bash
gitbook install
```**启动本地服务器**
```bash
gitbook serve
```**生成 HTML 文件,存放在 `_book` 目录下**
```
gitbook build
```