1. openresty的安装
参考:《openresty最佳实践》
https://moonbingbing.gitbooks.io/openresty-best-practices/content/index.html
2. centos服务器上的目录结构
⑴ Openresty的nginx配置文件nginx.conf
文件放/etc/conf下
⑵ api的目录
① 目录总体结构:
② YII2.0框架的整个目录放php目录:
⑶ wap的目录
①
② 静态html代码放wap/html目录:
3. nginx.conf的配置说明
⑴ api server的配置
① Nginx服务器导致CSS无法解析不起效果的问题
必须配置mime.types。
② server_name
外部访问的域名。
③ root
web文件所在根目录。
⑵ wap server的配置
① nginx.conf中include wap.conf;
② wap.conf
只需要解析静态html
4. 怎么start、stop Openresty
⑴ stop
① ps –ef | grep nginx
② kill –s 9 4516
kill –s 9 4515
kill –s 9 4514
⑵ start
nginx -p /var/www/html/api/ -c /etc/conf/nginx/nginx.conf
时间: 2024-10-13 11:36:57