Netty15 -- Analysis of netty startup process

  there are many Netty cases under Netty's io.netty.example package, which can be used for source code analysis and learning. Now use the Echo case under the package to analyze the startup process of Netty. The entry code is as follows: public final class EchoServer { static final boolean SSL = System.getProperty("ssl") != null; ...

Posted by karikamiya on Mon, 06 Dec 2021 20:44:42 +0100

SSL in openssl source code_ Read read process parsing

SSL encountered at work_ Read related issues, for SSL_ There are some questions about the read mechanism of read: SSL_ What is the difference between read and read and recv?. SSL_ Does read cause the inconsistency between the data to be read and the data actually returned?. SSL_ What is the behavior of read under blocking and non blocking ...

Posted by _confused_ on Thu, 02 Dec 2021 01:11:47 +0100

What do SSL, TLS, HTTP, HTTPS and SSH mean respectively?

HTTP + SSL/TLS = HTTPSSSL(Secure Sockets Layer)TLS(Transport Layer Security)HTTP(HyperText Transfer Protocol) enables clear text data exchange between computers. The default port is 80HTTPS(HyperText Transfer Protocol Secure) encrypts data with SSL/TLS, and then transmits it through HTTP to ensure data security. The default port is 443Differenc ...

Posted by Erik-NA on Sat, 27 Nov 2021 01:48:38 +0100

Alibaba cloud server adds an SSL certificate to the WordPress website and sets http to automatically jump to https

Add an SSL certificate to the WordPress website and set http to automatically jump to https Download certificate to local First, my certificate is an alicloud certificate. That is, the free certificate downloaded from this console. Of course, you can apply for it yourself. You'll end up with two files. WordPress websites basically use ...

Posted by suspect_device on Tue, 23 Nov 2021 23:17:58 +0100

nginx adds new modules using hot deployment

brief introduction When nginx is first compiled and installed, http_ ssl_ The module module is not compiled into the nginx binary file by default. If you need to add SSL certificate. That is to say, use the https protocol. Then you need to add http_ssl_module module. Suppose your nginx installation pa ...

Posted by biopv on Tue, 30 Jun 2020 03:42:35 +0200

Gorang network programming

catalog TCP network programming UDP network programming Http network programming Understand that functions are first class citizens HttpServer source reading Register route Start service Process request HttpClient source reading DemoCode Organizing ideas Important struct tec ...

Posted by nakago on Sun, 28 Jun 2020 08:54:44 +0200

Common use and configuration of Nginx

summary What is Nginx? Nginx (engine x) is a lightweight Web server, reverse proxy server and email (IMAP/POP3) proxy server. What is reverse proxy? Reverse Proxy means that the proxy server accepts the connection request on the internet, then forwards the request to the server on the internal netwo ...

Posted by neoboffins on Tue, 23 Jun 2020 06:04:08 +0200

NetCat (nc command) for Linux command learning

brief introduction NetCat, known as "Swiss Army Knife" in network tools, is short and practical (1.84 version is no more than 25k, old version or reduced version or even smaller), and is designed as a simple and reliable network tool, which can transmit read and write data through TCP or UDP ...

Posted by sargenle on Mon, 22 Jun 2020 09:48:38 +0200

Go language microservice framework practice: 7.TLS authentication and Token authentication

TLS authentication and Token authentication @author: DavieCopyright: Beijing Qianfeng Internet Technology Co., Ltd In the last lesson, we learned four flow patterns of gRPC go framework. In the actual production environment, a full-featured service includes not only the basic function of method cal ...

Posted by t0ta11 on Fri, 19 Jun 2020 10:31:10 +0200

Qiniu cloud image upload, configure secondary domain name, support https.

Write in front There are not a few articles about qiniu cloud uploading pictures, but they just use the test domain name given by qiniu cloud. As a webmaster, after upgrading his domain name to https, the obsessive-compulsive patients are not allowed to have the three words of insecurity in the brow ...

Posted by Salis on Wed, 17 Jun 2020 08:52:21 +0200