php7安装amqp扩展(基于Centos6.x)
当前使用Centos6.x系统,php使用7.1版本,wlnmp一键包已支持该扩展 php7安装amqp扩展(基于Centos7.x)参考:https://blog.whsir.com/post-4683.html amqp扩展包地址:https://pecl … 阅读全文
当前使用Centos6.x系统,php使用7.1版本,wlnmp一键包已支持该扩展 php7安装amqp扩展(基于Centos7.x)参考:https://blog.whsir.com/post-4683.html amqp扩展包地址:https://pecl … 阅读全文
当前使用Centos7.x系统,php使用7.1版本,wlnmp一键包已支持该扩展 php7安装amqp扩展(基于Centos6.x)参考:https://blog.whsir.com/post-4692.html amqp扩展包地址:https://pecl … 阅读全文
由于官方文档没有特别说明,网上大部分ceph配置文章丢三落四。导致配置ceph初始monitor(s)时,各种报错,本文提供了几种解决的办法可供参考。 执行ceph-deploy mon create-initial 报错部分内容如下: [ceph2][ERR … 阅读全文
在crond计划任务、nohup中我们经常可以看到>/dev/null 2>&1,但是很多人并不理解其含义,想要真正的理解它,首先我们需要知道文件描述符的三种类型。 通过上面的表格,我们将>/dev/null 2>&1拆 … 阅读全文
wp想要关闭feed,首先肯定想到的是“插件”,另一种方式就是修改代码。 插件的话可以参考使用https://wordpress.org/plugins/disable-feeds/ 个人来讲,不推荐使用插件,如果你很依赖插件的话,最后你会发现你的wordpr … 阅读全文
$arg_name 请求行中的name参数 $args 请求行中的参数 $binary_remote_addr 客户端地址为二进制形式,IPv4地址值的长度是4字节,IPv6地址值的长度是16字节 $body_bytes_sent 返回给客户端的字节数,不包括 … 阅读全文
Nginx判断用户IP设置访问跳转 第一种方法 根据$remote_addr客户端IP地址判断,判断成功即返回301跳转,可以写正则,如果有大量不规则IP就很头疼了。
1 2 3 |
if ($remote_addr = 192.168.1.123) { return 301 https://blog.whsir.com; } |
第二种方法 nginx通过 … 阅读全文
当前使用Centos7.x系统,php使用7.2版本,whsir一键包已支持该扩展 安装libsodium libsodium是安装sodium扩展的必须依赖条件,我这里提供两种安装方式,编译和直接yum 编译安装libsodium [crayon-67690 … 阅读全文
原文地址:https://bbs.aliyun.com/read/593779.html 亲爱的论坛用户: 阿里云BBS论坛(https://bbs.aliyun.com/)自2011年7月上线,至今已经近8年。感谢大家长期以来对论坛的支持与陪伴。 2015年 … 阅读全文
location几种匹配模式 location = /uri 精确匹配,不能使用正则且区分字符大小写 location ^~ /uri 前缀匹配,不能使用正则且区分字符大小写 location ~ 正则匹配,区分字符大小写 location ~* 正则匹配,不 … 阅读全文