Install
Manjaro
- 编译安装
1 | yaourt -S openresty |
- 添加环境变量
默认安装路径 /opt/openresty/, ~/.bashrc 或者 ~/.bash_profile file,
添加以下变量
1 | RESTY=/opt/openresty |
检查当前resty安装是否成功
1 | resty -e 'print("hello, world!")' |
Configure
创建openrest目录
1 | mkdir openresty |
- 在conf创建默认配置文件nginx.conf
1 | worker_processes 1; |
- 启动Nginx
1 | nginx -p `pwd`/ -c nginx.conf |