摘要:
首先安装nginx,此处不做赘述。 保存以下内容到/lib/systemd/system/nginx.service文件。 注意:将上面内容中的路径改为实际的路径。 重载systemd配置文件 systemctl daemon-reload 启动服务 systemctl start nginx.se 阅读全文
摘要:
PHP一般跟MySQL数据库搭配使用,但最近遇到一个需求需要实现PHP连接Oracle,了解到PHP可以通过pdo_oci和oci8扩展来连接Oracle,这里将安装的过程记录下来。 安装环境:PHP7.2.18,Deepin15.10 首先,安装oci8和pdo_oci扩展依赖的Oracle cl 阅读全文
摘要:
sendfile on; #让nginx在传输文件时直接在磁盘和tcp socket之间传输数据 location ~ .*\.(txt|xml)$ { gzip on; #开启压缩 gzip_http_version 1.1; #协议版本配置 gzip_comp_level 1; #压缩等级 gzip_types text/pla... 阅读全文
摘要:
#!/bin/bash read_dir(){ for file in `ls -a $1` do if [ -d $1"/"$file ] then if [[ $file != '.' && $file != '..' ]] then read_dir $1"/"$... 阅读全文
摘要:
sys_get_temp_dir 阅读全文
摘要:
有时候在ajax返回的json数据前多出一些不明的字符,就是所谓的bom头,导致javascript解析json格式失败,下面贴出一段PHP代码实现检测和去除bom头。 将上面的代码保存到一个PHP文件中,如:index.php,放入网站根目录下,通过浏览器访问,如:http://localhost 阅读全文
摘要:
使用tcpdump命令抓取UDP 2000端口报文,并将报文保存到当前目录下的udp.cap文件,命令如下: tcpdump -i 网络接口名称 udp port 2000 -w ./udp.cap 然后使用wiresharp分析抓取到的报文文件。 阅读全文