Securing Nginx with Let's Encrypt SSL on CentOS 7
Let's Encrypt is a free, automated, and open Certificate Authority (CA) provided by the Internet Security Reseacrh Group (ISRG). It allows website owners to obtain trusted SSL certificates that are recognized by all major modern browsers. This guide demonstrates how to use the Certbot tool to generate and manage SSL certificates for Nginx on a ...
Posted on Mon, 22 Jun 2026 16:23:32 +0000 by pixelsoul
Building TCP and HTTP Clients and Servers with Vert.x
Vert.x provides a straightforward way to implement non-blocking TCP and HTTP clients and servers.
TCP Server Implementation
Basic Server Creation
Instantiate a TCP server with default settings:
NetServer tcpServer = vertx.createNetServer();
Server Configuration
Customize server behavior by passing a NetServerOptions object:
NetServerOptions sr ...
Posted on Fri, 08 May 2026 03:09:39 +0000 by jraede