上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 24 下一页
摘要: 在新主机的迁移过程中,最大的困难就是WP permalink rewrite的设置. 因为旧主机是用的Apache, 使用的是WP本身就可以更改的.htaccess,没有太大的难度.而这次在VPS上跑的是Nginx,主要是因为Nginx的速度比Apache要快很多. 但是另一方面就不是那么舒服了,因 阅读全文
posted @ 2020-03-04 16:45 mofy 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 语法规则: location [=|~|~*|^~] /uri/ { … } = 开头表示精确匹配 ^~ 开头表示uri以某个常规字符串开头,理解为匹配 url路径即可。nginx不对url做编码,因此请求为/static/20%/aa,可以被规则^~ /static/ /aa匹配到(注意是空格)。 阅读全文
posted @ 2020-03-04 16:35 mofy 阅读(303) 评论(0) 推荐(0) 编辑
摘要: Nginx Rewrite规则相关指令 Nginx Rewrite规则相关指令有if、rewrite、set、return、break等,其中rewrite是最关键的指令。一个简单的Nginx Rewrite规则语法如下: rewrite ^/b/(.*)\.html /play.php?video 阅读全文
posted @ 2020-03-04 16:17 mofy 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 一、输入子目录跳转 复制代码 location /templets { proxy_pass http://testServer/templets/; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-I 阅读全文
posted @ 2020-03-04 16:14 mofy 阅读(170) 评论(0) 推荐(0) 编辑
摘要: https://discourse.igniterealtime.org/t/keystore-problem-cannot-convert-combined-of-type-class-java-lang-string-to-class-org-jivesoftware-openfire-spi- 阅读全文
posted @ 2019-10-17 19:49 mofy 阅读(189) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/merbn/article/details/80395664 https://blog.csdn.net/zhaokx3/article/details/52562016 https://www.cnblogs.com/whatlonelytear/p/5 阅读全文
posted @ 2019-10-17 19:44 mofy 阅读(1174) 评论(0) 推荐(0) 编辑
摘要: -w 0 表示不换行 阅读全文
posted @ 2019-09-09 01:08 mofy 阅读(203) 评论(0) 推荐(0) 编辑
摘要: https://serverfault.com/questions/698038/mysql-innodb-recovery-from-datafiles https://serverfault.com/questions/851342/mysql-crashed-and-not-starting- 阅读全文
posted @ 2018-09-18 16:16 mofy 阅读(1290) 评论(0) 推荐(0) 编辑
摘要: 网上的方法一般都是 fuser -m /nfs 查出进程号,然后杀死进程号,或者fuser -km /nfs直接杀死,我试了下都不行 解决方法: 对于nfs文件系统来说,umount -l /nfs 关于fuser介绍: 用途 使用文件或文件结构识别进程。 用途 使用文件或文件结构识别进程。 语法 阅读全文
posted @ 2018-07-17 17:19 mofy 阅读(3709) 评论(0) 推荐(0) 编辑
摘要: members命令的输出基于gossip协议,并最终一致。 也就是说,在任何时候,当地代理所看到的可能与服务器上的状态不完全一致。 要获得完全一致,请使用HTTP API再将HTTP请求转发给Consul服务器:curl localhost:8500/v1/catalog/nodes除了HTTP A 阅读全文
posted @ 2018-06-29 18:10 mofy 阅读(408) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 24 下一页