Harbor configures HTTPS and uses docker-compose container deployment

1. Preparation Note: Pay attention to the choice of version. Does the docker version correspond? Prepare images and binaries 1.1 Download the harbor offline package. I packaged the image from a machine using docker save -o. 1.2 docker-compose binaries curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose Configure local resolution echo “192.168.40.63 qiushi.cn” >> /etc/hosts […]

Capacitor packages h5 to Android application, uniapp https http net::ERR_CLEARTEXT_NOT_PERMITTED

Capacitor packages h5 to Android application, uniapp https http net::ERR_CLEARTEXT_NOT_PERMITTED capacitor official website: https://capacitorjs.com/docs/ The project needs to make an app, and this app is made with uniapp, which uses a library that relies on dom, so Uniapp cannot be used to directly generate the corresponding android application. I tried it, but it cannot be […]

Solving CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghua.edu.cn/anacond

Table of Contents Solve CondaHTTPError: HTTP 000 CONNECTION FAILED for url https://mirrors.tuna.tsinghua.edu.cn/anaconda error 1. Check network connection 2. Change the Conda image source 3. Use a proxy 4. Upgrade Conda version 5. Reconfigure the environment in conclusion Solve CondaHTTPError: HTTP 000 CONNECTION FAILED for url https://mirrors.tuna.tsinghua.edu.cn/anaconda error When using Conda for Python package management and […]

Spring Security Vulnerability Protection-HttpFirewall and HTTPS

1. HttpFirewall Spring Security has several areas where the patterns you define are tested against incoming requests to determine how the request should be handled. This happens when the FilterChainProxy decides which filter chain the request should pass through, and when the FilterSecurityInterceptor decides which security constraints apply to the request. When testing against a […]

Protocol HTTP HTTPS SSL TLS SSL Certificate Cross-Domain (Super Detailed Version)

1. Network Computer Network: Computer network, a set of topological structures composed of nodes and edges. Edges are links, the links between routers are backbone links, and the links between routers and hosts are access links. Node, that is, host node or data exchange node, consists of host or data exchange device (or higher-level load […]

SpringBoot_minio sdk uses self-signed https certificate error handling

minio sdk uses self-signed https certificate error handling 1.Problem description 1.1 Error log 1.2 maven dependency configuration 1.3 Current spring MinioClient configuration 2.Problem analysis 3.Problem solving 3.1 Use trusted certificates 3.2 Ignore certificate verification 3.2.1 minio client 3.2.2 minio sdk ignores certificate verification 3.2.2.1 Extension: Supplement minioclient request log 4. Problem summary 5. Appendix 1.Problem […]

Solve.ReadTimeoutError: HTTPSConnectionPool(host=pypi.tuna.tsinghua.edu.cn, port=443): Read timed o

Table of Contents Solve.ReadTimeoutError: HTTPSConnectionPool(host=’pypi.tuna.tsinghua.edu.cn’, port=443): Read timed out Method 1: Increase the timeout Method 2: Change pip source Method 3: Use domestic image accelerator Solution.ReadTimeoutError: HTTPSConnectionPool(host=’pypi.tuna.tsinghua.edu.cn’, port=443): Read timed out In Python development, we often use third-party libraries to meet various needs. When we use pip to install these libraries, we may sometimes encounter […]

rewrite directory mapping, configure nginx to receive https requests

1. Use rewrite to rewrite the url: /test/test1/test2/test.html /test.html Normal access: The browser address bar does not change. Temporary redirection: 302 Permanent redirection: 301 Step 1: Preparation->Create the corresponding directories and files [root@server ~]# mkdir mkdir /www/ip/129 -p [root@server ~]# mkdir test/test1/test2 -p [root@server ~]# echo “hello” > test/test1/test2/test.html [root@server ~]# echo “bye” > /www/ip/129/test.html […]

How to use JMeter for HTTPS request testing?

This article will introduce how to use JMeter to test HTTPS requests, and provide related tips and considerations. When conducting performance testing, many websites use the HTTPS protocol. When we test HTTPS requests, if the server turns on two-way authentication, the client needs to bring the certificate when sending the request. This article describes how […]