OpenResty 項目模板,新項目能夠 clone 下來修改html
項目地址:https://github.com/fengjx/ope...nginx
相關閱讀git
$ make help Makefile cmd: deps: 安裝依賴 start: 啓動服務(前臺進程) start: 啓動服務(後臺進程) start: 中止服務 start: 中止服務 help: Makefile幫助
# 下載項目模板 $ git clone https://github.com/fengjx/openresty-quick-start.git # 刪除 git 文件 $ rm -rf .git # 修改項目名 $ mv openresty-quick-start my-project $ cd my-project # 安裝依賴 $ make deps # 啓動服務 $ make start-background server start for background # 訪問測試 $ curl -i http://localhost:1024 HTTP/1.1 200 OK Date: Wed, 14 Oct 2020 13:14:59 GMT Content-Type: application/json Transfer-Encoding: chunked Connection: keep-alive Server: OpenResty ok # 中止服務 $ make quit server quit
├── Makefile - makefile 腳本 ├── README.md - 說明文檔 ├── conf - nginx 配置 │ ├── common - 公共配置 │ └── servers - server 配置 ├── logs - 日誌目錄 ├── rockspec - 依賴管理 └── src - lua 源碼目錄 ├── app.lua └── core