Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 447 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 447 Bytes

openresty-quickstart

A barebones OpenResty project structure.

Getting Started

nginx -p <PWD> -c conf/nginx.conf

Replace <PWD> with this project's working directory. Then, visit http://localhost:8080 through cURL or your browser!

You may need to make sure your nginx executable is in your PATH. In your terminal:

PATH=/usr/local/openresty/nginx/sbin:$PATH
export PATH