摘要:
原因是,有个东西在英文版删除的时候,未删除干净。 必须把这个删除掉,重新安装中文版才行。 阅读全文
摘要:
因为在HttpGet请求中使用body传输json,被老板骂了,说我不懂http协议,但是http协议没有规定不能这么做啊?? RFC 7231, section 4.3.1: GET The GET method requests transfer of a current selected re 阅读全文
摘要:
-- 开启允许创建函数 set global log_bin_trust_function_creators = 1; -- 创建随机生成姓名函数 rand_name delimiter $$ create function rand_name(n int) returns varchar(16) 阅读全文
摘要:
今天发现个奇怪的事情,有一个项目,用vs2019打开,报错,说是找不到相应的sdk,但是我把这个项目放到桌面,就能打开。 发现在该目录下有一个json文件: { "sdk": { "version": "3.1.403" } } 删除掉就可以了 阅读全文
摘要:
打开iis绑定域名时,点击绑定弹出绑定框,在选择类型为“https”的时候,主机名为灰色的无法填写 解决方法: 1. 选择https,在选择相应的SSL证书,点击确定 2. 打开C:\Windows\system32\inetsrv\config\applicationHost.config 3. 阅读全文
摘要:
public class LoginController : Controller { private readonly IHttpClientFactory _clientFactory; public LoginController(IHttpClientFactory clientFactor 阅读全文
摘要:
场景: docker容器:8081 8082 8083 8081:web网站 8083:web网站 8082:nginx 8082的nginx进行了转发配置,用户访问8082,nginx会转发到8081或8083 upstream pic{ server xxx.xxx.xxx.xxx:8081 w 阅读全文
摘要:
七层代理服务器(例如DDoS高防)将用户的访问请求转发到后端服务器时,源站看到的请求来源默认是七层代理服务器(例如DDoS高防)的回源IP,而真实的请求来源IP被记录在HTTP头部的X-Forwarded-For字段中,格式为X-Forwarded-For: 用户真实IP, 高防代理IP。 如果访问 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.A 阅读全文
摘要:
1、需要有自我域名支持。 2、ContentType要设置好。 拿图片来举例:上传base64 public bool PutObject(string bucketName, string objectName, string ImageUrl) { try { var objectmetadat 阅读全文