Fading Coder

One Final Commit for the Last Sprint

Configuring Self-Signed SSL Certificates for SQL Server Connections

Before proceeding with SSL certificate configuration, ensure that SQL Server is properly installed and accessible. Two critical prerequisites must be satisfied: Enable TCP/IP Protocol Launch the Sql Server Configuration Manager tool that accompanies SQL Server installation. Navigate to SQL Server Ne...

Deploying GitLab CE on CentOS 8 with Self-Signed SSL Certificates

sudo yum install -y curl openssh-server openssh-clients postfix Import the GitLab package repository and install the Community Edition: curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash sudo dnf install -y gitlab-ce Create a dedicated directory for T...

Establishing a Private Certificate Authority and Issuing Server Certificates

Prerequisites Two CentOS 7 hosts are required: one for the Certificate Authority (CA) and another for the web server. Creating the Private Certificate Authority Verify OpenSSL Configuration Ensure the OpenSSL configuration file specifies the correct CA directory structure. cat /etc/pki/tls/openssl.c...

Configuring SSL Access for an Oracle Database

Prerequisites and Environment Setup To enable SSL access for an Oracle database, you need a functioning server and client environment. In this example: Server: CentOS 7.9 running Oracle Database 11.2.0.4.0 Client: Windows Server 2008 R2 running Oracle Client 11.2.0.3.0 Start by creating wallets and...

Configuring HTTPS with Self-Signed SSL Certificates in Nginx

Install Nginx Ensure Nginx was compiled with the --with-http_ssl_module option. Verify the build configuraton: root@ecs-7398:/usr/local/nginx# ./sbin/nginx -V nginx version: nginx/1.20.2 built by gcc 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.2) built with OpenSSL 1.1.1f 31 Mar 2020 TLS SNI support enabled...