需求背景项目源码在Gitlab代码仓库中有多个gitlab子项目的代码,项目上线完成后,一般会对上线分支的代码进行分支合并到受保护的分支上,一般为Master分支,然后打TAG。这里结合Jenkins+Gitlab进行自动化打TAG。Jenkins配置进入Jenkins,新建Job,进入Job的Configure配置,配置参数化构建。Build选择添加ExecuteShell。打TAG分支合并,打
分类:
其他好文 时间:
2020-07-24 19:12:18
阅读次数:
145
Authelia 贴一下官方描述: Authelia is an open source authentication and authorization server protecting modern web applications by collaborating with reverse ...
分类:
其他好文 时间:
2020-07-24 16:13:19
阅读次数:
144
1:导入NuGet包 Microsoft.AspNetCore.Authentication.JwtBearer 2:配置 jwt相关信息 3:在 startUp中 1 public void ConfigureServices(IServiceCollection services){ 2 #re ...
一、报错原因:mysql 8.0 默认使用 caching_sha2_password 身份验证机制:从原来的 mysql_native_password 更改为 caching_sha2_password,但是第三方客户端(如Navicat)暂不支持新的加密方式,故而报错。 二、解决方案:双击打开 ...
分类:
数据库 时间:
2020-07-23 22:14:14
阅读次数:
90
三大验证模块概述 在DRF的APIView重写的dispatch方法中, self.initial(request, *args, **kwargs) 这句话就是执行三大验证的逻辑, 点进去可以看到依次执行的就是认证(authentication)/权限(permission)/限流(throttl ...
分类:
其他好文 时间:
2020-07-23 16:05:48
阅读次数:
66
gitlab服务器搭建--腾讯云: [root@VM_0_5_centos ~]#rz [root@VM_0_5_centos ~]#yum install gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm [root@VM_0_5_centos ~]#vi /etc/git ...
分类:
其他好文 时间:
2020-07-23 15:57:58
阅读次数:
102
0、引言若不清楚什么是JWT的请先了解下什么是JWT。 1、关于Authentication与Authorization我相信在aspnet core中刚接触甚至用了段时间这两个概念的时候都是一头雾水的,傻傻分不清。认证(Authentication)和授权(Authorization)在概念上比较 ...
分类:
Web程序 时间:
2020-07-22 20:14:13
阅读次数:
113
基于docker安装gitlab gitlab: image: gitlab/gitlab-ce restart: always hostname: '81.70.22.100' environment: GITLAB_OMNIBUS_CONFIG: | external_url 'http://8 ...
分类:
其他好文 时间:
2020-07-22 15:41:54
阅读次数:
86
公司的gitlab迁移后,我重新用新的地址拉取代码,确怎么也拉不下来,每次都提示git did not exit cleanly (exit code 128) 检查了一遍自己的权限和git项目的地址,都没问题。 后来才发现,是自己用新地址拉代码的时候,第一次输入的密码仍是旧的gitlab账号的密码 ...
分类:
其他好文 时间:
2020-07-21 22:57:02
阅读次数:
171
Configure Windows Authentication in ASP.NET Core Windows Authentication (also known as Negotiate, Kerberos, or NTLM authentication) can be configured ...