最新发布第3页
排序
Nginx配置文件中的变量含义
$remote_addr 直接请求者ip$http_x_forwarded_for 客户端请求ip$remote_user 客户端用户名称$time_local 服务端时间和时区$request 请求的路径和协议$status 本次请求的响应状态$body_bytes_sen...
Goland使用hmac-sha256
hmac是基于hash算法加上一个秘钥key,可以约等于对数据加了盐值(salt)后再做hash算法运算,常用的hash算法有md5,sha256等,对应的就有hmac-md5,hmac-sha256 func hmacSha256(data string, secre...
Nginx常用配置参考模板
nginx配置反向代理服务 server { listen 80; server_name abc.com; location / { proxy_pass http://localhost:8080/; index index.html; } } nginx配置h5项目,静态文件访问 server { listen 8...
C++实现split函数
#include <string> #include <vector> vector<string> split(string s, string p){ vector<string> res; std::string::size_type i = 0; std::string::size_type found = s.find(p)...
windows电脑查看网络连接状态
#查看活跃的连接 netstat -ano #过滤指定的端口(8080) netstat -ano |findstr '8080' #根据pid(5621)查询占用端口的进程名称 tasklist |findstr '5621'
Centos7使用firewall-cmd管理防火墙
先查看是否开启firewalld systemctl status firewalld 如果是未开启状态先要启用firewalld,执行以下命令开启firewalld systemctl start firewalld 查看已放行的端口 firewall-cmd --zone=publi...
C++运算符和结合性
优先级运算符含义要求运算对象的个数结合方向1()[]->.圆括号下标运算符指向结构体成员运算符结构体成员运算符自左向右2!~++---(类型)*&sizeof逻辑非运算符按位取反运算符自增运算符自减...