1 2 3 4 5 ··· 7 下一页
摘要: 第一步 在登录类中生成 jwt class Login(MyException,APIView): def post(self,request): user_obj = models.UserInfo.objects.filter(**request.data).first() if not use 阅读全文
posted @ 2024-04-22 15:49 李瑞鑫 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1 # 同步阿里云oss文件到aws s3 2 import oss2 3 import boto3 4 import os 5 from boto3.s3.transfer import TransferConfig 6 7 8 9 # 阿里云OSS配置 10 aliyun_access_key_ 阅读全文
posted @ 2024-02-20 14:23 李瑞鑫 阅读(50) 评论(0) 推荐(0) 编辑
摘要: jira安装教程破解版 阅读全文
posted @ 2023-09-06 10:25 李瑞鑫 阅读(1308) 评论(0) 推荐(0) 编辑
摘要: 虚拟服务中这段代码含义 虚拟服务中这段代码含义“ spec: gateways: - magicboard - mesh hosts: - magicboard - magicboard.lh.prod http: - name: default retries: attempts: 3 retry 阅读全文
posted @ 2023-04-24 12:07 李瑞鑫 阅读(210) 评论(0) 推荐(0) 编辑
摘要: username 自己定义即可,跟git账号无关, 私钥可以单独生成,或者使用本机上的私钥, 公钥要放到gitlab上 阅读全文
posted @ 2023-03-21 17:08 李瑞鑫 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 直接登录官网部署,修改拉取镜像地址可以参考以下文档, https://blog.csdn.net/saynaihe/article/details/121175162 https://blog.csdn.net/qq_22917163/article/details/108623113 使用dock 阅读全文
posted @ 2023-03-17 12:42 李瑞鑫 阅读(212) 评论(0) 推荐(0) 编辑
摘要: map指令来自于 ngx_http_map_module 模块,提供的核心能力是 基于一个变量创建一个新变量 语法: 只能配置在http块内 map string $variable {...} 官方文档上给了几个例子: map $http_host $name { hostnames; defau 阅读全文
posted @ 2022-10-25 22:00 李瑞鑫 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 获取证书过期时间 阅读全文
posted @ 2022-07-21 18:45 李瑞鑫 阅读(110) 评论(0) 推荐(0) 编辑
摘要: linux 最大线程数 阅读全文
posted @ 2022-04-21 14:00 李瑞鑫 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 文件内容 #!/usr/bin/env python # -*- coding: UTF-8 -*- import sys import redis import os pool=redis.ConnectionPool(host='127.0.0.1',password='xxxxxx',db=2 阅读全文
posted @ 2022-03-01 18:29 李瑞鑫 阅读(358) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 7 下一页