TLS NGINX反向代理规则 2020年03月07日 wzh 83 location / { proxy_pass http://127.0.0.1:15555; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; ... 阅读全文 0 评论
变量和常量 2020年03月06日 wzh 75 变量的定义方式类型 名字 {初始值}; 或者 类型 名字 = 初始值;int test {0}; int test = 0; 常量的定义方式const 类型 名字 {初始值}; 或者 类型 const 名字 {初始... 阅读全文 0 评论