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
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
The third party accesses sap through PI. Precautions: read external Oracle data with SAP
Requirement description
As an interface, the external system interacts with SAP through PI. Here are some useful knowledge points
1, Is the Target URL HPPT/HTTPS?
If the other party's address is HTTP, the other party's URL address can be directly used in Integration Builder. Confirm with the other party's system personnel in adv ...
Posted by kimbhoot on Thu, 18 Nov 2021 04:05:18 +0100
netty series: making TLS support http2
brief introduction
We know that although the HTTPS protocol does not force the use of HTTPS, for most browsers, if they want to use HTTPS, they must use HTTPS. Therefore, we need to know how to support HTTPS in netty's TLS.
Extended protocols NPN and ALPN of TLS
Http2 protocol is developed from spdy protocol. Both spdy and http2 have dev ...
Posted by Butthead on Wed, 20 Oct 2021 02:15:39 +0200
docker installs wordpress, binds domain names through nginx reverse proxy, and configures https
Assuming that docker has been installed, if it is not installed, you can follow it 5-minute installation docker tutorial .
1, Download Image
The latest version is downloaded by default. If you want to specify the corresponding version, you can add the version after the colon. For example, mysql:5.7:
docker pull mysql:5.7
docker pull wordpre ...
Posted by xgd on Sun, 03 Oct 2021 01:15:11 +0200