大飞_dafei

导航

上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 49 下一页

2019年2月13日 #

Apache 配置https 自签名证书 或者 购卖证书 _fei

摘要: Apache 配置https 自签名证书 或者 购卖证书 购卖证书配置 <VirtualHost _default_:443> SSLProtocol all -SSLv2 -SSLv3 SSLCipherSuite HIGH:!RC4:!MD5:!aNULL:!eNULL:!NULL:!DH:!E 阅读全文

posted @ 2019-02-13 18:15 大飞_dafei 阅读(411) 评论(0) 推荐(0) 编辑

2019年1月29日 #

Apache httpd和php的结合方式 _fei

摘要: Apache httpd和php的结合方式 默认的,httpd和php结合方式分为两大类,DSO和FCGI。 DSO方式,php作为httpd的模块 FCGI方式,使用php-fpm单独管理php进程池 参考地址: httpd和php的结合方式 其他: Apache 参考文章 Apache之Rewr 阅读全文

posted @ 2019-01-29 07:43 大飞_dafei 阅读(335) 评论(0) 推荐(0) 编辑

2019年1月20日 #

windows 中nginx奇葩报错 nginx: [emerg] unknown directive "#" in&#160; nginx/conf/nginx.conf:3

摘要: windows 中nginx奇葩报错 nginx: [emerg] unknown directive "#" in&#160; nginx/conf/nginx.conf:3 经过: 用记事本打开nginx.conf 配置文件,后来启动nginx就开始报错,报错内容如下 nginx: [emerg 阅读全文

posted @ 2019-01-20 15:22 大飞_dafei 阅读(538) 评论(0) 推荐(0) 编辑

2019年1月16日 #

laravel 使用路由api.php _fei

摘要: laravel 使用路由api.php 1) 在 文件中: routes/api.php 添加: Route::get('fei', 'FeiController@index'); Route::get('/hello', function () { return 'world'; }); 2) 修 阅读全文

posted @ 2019-01-16 15:51 大飞_dafei 阅读(1019) 评论(0) 推荐(0) 编辑

2019年1月13日 #

xss csrf

摘要: csrf 跨站请求伪造 xss 跨站脚本攻击 阅读全文

posted @ 2019-01-13 11:02 大飞_dafei 阅读(65) 评论(0) 推荐(0) 编辑

2019年1月12日 #

sql 预处理为什么可以放置SQL注入

摘要: PHP将SQL模板和变量分两次发送给MySQL,由MySQL完成变量的转义处理. 既然SQL模板和变量是分两次发送的,那么就不存在SQL注入的问题了. 在MySQL的general_log里可以看到 参考地址: 参数化查询为什么可以避免sql注入呢? 阅读全文

posted @ 2019-01-12 14:02 大飞_dafei 阅读(122) 评论(0) 推荐(0) 编辑

2019年1月6日 #

mysql explain 执行计划详解

摘要: mysql explain 执行计划详解 explain select * from test where score=80 mysql> explain select * from test where score=80 \G; *************************** 1. row 阅读全文

posted @ 2019-01-06 20:39 大飞_dafei 阅读(95) 评论(0) 推荐(0) 编辑

MySQL 索引分类

摘要: #索引类型: 普通索引(index 另一个名字normal)、唯一索引(unique)、全文索引(fulltext)、空间索引(SPATIAL) 官方: The following sections describe different aspects of the CREATE INDEX sta 阅读全文

posted @ 2019-01-06 19:35 大飞_dafei 阅读(87) 评论(0) 推荐(0) 编辑

2018年12月29日 #

linux 下部署nodejs项目(3种方式)

摘要: 关于在node在linux的部署主要有三种方式, 第一种就是自己下载源码,手动编译二进制,即是部署过程。 第二种方法 直接下载二进制文件解压即可。 第三种方式,使用yum install node或者apt-get install node安装(在linux下 貌似默认源中没有node的程序,这种方 阅读全文

posted @ 2018-12-29 19:06 大飞_dafei 阅读(283) 评论(0) 推荐(0) 编辑

2018年12月28日 #

ubuntu centos搭建版本控制svn _fei

摘要: 1) centos:系统搭建版本控制svn rpm -qa subversion //检查是否安装了低版本的SVN yum remove subversion //如果存储旧版本,卸载旧版本SVN 开始安装 yum -y install subversion svnserve --version / 阅读全文

posted @ 2018-12-28 16:53 大飞_dafei 阅读(123) 评论(0) 推荐(0) 编辑

上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 49 下一页