一、安装
参见http://openresty.org/cn/linux-packages.html,按照步骤进行即可,安装后位于/usr/local/openresty目录中。
二、使用
参见http://openresty.org/cn/getting-started.html。
1、将nginx添加到PATH环境变量:
1 2 |
PATH=/usr/local/openresty/nginx/sbin:$PATH export PATH |
然后使用我们的配置文件启动nginx服务器:
1 |
nginx -p `pwd`/ -c conf/nginx.conf |
其中的参数-p用于set nginx path prefix。
如果修改了nginx.conf文件的话,可以采用下面的语句进行reload操作:
1 |
/usr/local/openresty/nginx/sbin/nginx -s reload -p `pwd`/ -c conf/nginx.conf |
错误日志位于当前工作目录的logs/error.log下。
参考文档:
1、《Command-line parameters》,http://nginx.org/en/docs/switches.html
转载时请保留出处,违法转载追究到底:进城务工人员小梅 » Ubuntu下OpenResty的安装与使用