AMH 社区首页
AMH社区 - 开放自由有价值的社区
[求助帖] 急切需要NGINX的升级脚本 |
|
---|---|
Kris |
Kris 发表于 2013-05-01 15:48:12
现在NGINX已经到了新版本了,毕竟新版本会好点,请AMYSQL可否在面板上加个NGINX升级模块? 我相信大部分人都需要这个.
点赞,加油! (0分)
2013-05-01 15:48:12 1
|
admin |
这个模块会提供的,需要时间。
或先手动升级也不难啊。
回复
2013-05-01 15:54:23 2
AMH官方号 2011~2021 (10周年) |
lovettww |
回复
2013-05-02 13:59:47 3
|
admin |
回复
2013-05-02 18:37:28 4
|
isha |
我那个 缓存加速的也就是在这个问题出现问题了 admin说是 先要看下_v 然后在编译
但是我不会shell如何去-V判断他以前安装了什么模块 - -! 不然就帮你写出来了
回复
2013-05-03 13:19:10 5
|
isha |
:$ 只会手工操作不会直接用shell写出来判断-V里面的模块
回复
2013-05-03 13:19:54 6
|
admin |
Nginx configure配置写到一个临时文件,并取值到nginx_configure变量 nginx_configure=`/usr/local/nginx/sbin/nginx -V 2> /tmp/nginx_configure && cat /tmp/nginx_configure | grep 'configure arguments' | cut -d: -f2 && rm -f /tmp/nginx_configure`; 新配置变量 new_nginx_configure=$nginx_configure; 判断Nginx configure配置有没有安装过你的模块,没有的话就加到变量中去。 if ! echo "$new_nginx_configure" | grep 'add-module=/usr/local/your_module' > /dev/null; then new_nginx_configure="${new_nginx_configure} --add-module=/usr/local/your_module"; fi; 最后: ./configure $new_nginx_configure;
回复
2013-05-03 15:30:36 7
|