Apache configures HTTPS functionality

apache configures https1. yum installs OpenSSL and openssl-devel, httpd-devel2. Generate certificates (which can also be obtained from the company's certification authority):#Create server key OpenSSL genrsa-des3 1024 >/usr/local/apache/conf/server.key    # Remove passwords from keys (to avoid being asked for passwords af ...

Added by kaos057 on Sat, 06 Jul 2019 01:54:38 +0300

Server installation and domain name resolution configuration of nginx reverse proxy (Linux)

brief introduction nginx is a lightweight web server and a reverse proxy server (domain name forwarding is the function of reverse proxy) 1.nginx can directly support rails and php programs 2. Can act as a reverse proxy server for HTTP 3. As a load balancing server 4. As a mail proxy server 5. Help front-end achieve dynamic a ...

Added by jana on Sun, 30 Jun 2019 05:23:32 +0300

Nginx Series - Server Installation and Configuration

I. Installation 1. First install the missing dependency packages [root@bogon /]# yum -y install gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-devel pcre pcre-devel 2. Download and decompress Nginx [root@bogon src]# wget http://nginx.org/download/nginx-1.13.3.tar.gz [root@bogon src]# tar xvf nginx-1.13.3.tar.gz [root@bogon src]# ...

Added by nade93 on Thu, 13 Jun 2019 02:17:02 +0300

SSH Secure Communication and Port Forwarding (I)

Bowen Reference https://segmentfault.com/a/1190000010312601 Summary The normal operation of all business is inseparable from a safe operating environment. System security is directly related to business stability, reliability and availability. This chapter introduces some topics related to system security. Basic concepts of encryption Security ...

Added by sanlove on Wed, 12 Jun 2019 03:13:12 +0300

Build lnmp environment

Operating system: linux Mint 18.2 Compile and install php7.2 1.Install the compiler first sudo apt install gcc automake autoconf libtool g++ #Under centos, it is yum install gcc automake autoconf libtool gcc-c++. 2.Installation of Foundation Library sudo apt install libxml2-dev openssl libssl-dev curl libcurl4-gnutls-dev libjpeg- ...

Added by phpbeginer on Wed, 12 Jun 2019 01:18:05 +0300

ssl protocol and open source implementation of openssl

ssl protocol Secure Socket Layer: Secure Socket Layer, ssl is a set of security protocols, which are called by application layer. When http calls ssl protocol, it is called https. When ftp calls ssl protocol, it is called sftp. lls is a collection of protocols, including: Handshake protocol: including negotiating security parameters and pas ...

Added by myflashstore on Tue, 11 Jun 2019 03:01:04 +0300

Using Nginx to Build Fast and Secure HTTPS Website Based on Let's Engypt Free Certificate

My big EOIOfficial website Officially launched! In order to build the company's first officially launched public site, we have spent a lot of thought, one of which is how to make it fast and safe. We use Nuxt SSR was done and enabled PWA module Lighthouse scored more than 90 points. On the basis of guaranteeing IE9 compatibility, the official w ...

Added by moola on Tue, 28 May 2019 01:29:24 +0300

nginx installation in RHEL 6.5 environment

1. Understanding Nginx Nginx ("engine x") is a high performance HTTP and reverse proxy server, as well as an IMAP/POP3/SMTP proxy server. Nginx was developed by Igor Sysoev for Rambler.ru, the second most visited site in Russia. The first public version, 0.1.0, was released on October 4, 2004. It distributes the source code in BSD-l ...

Added by THEMADGEEK on Sat, 25 May 2019 22:07:31 +0300

FaceBook login access

Official documents Facebook logs in to Android official documents Create application First go Facebook Developer Platform Register for a developer account where you need to go over the wall and add your own application in the background SDK integration There are two ways to integrate SDK Maven mode In your project, open your_app > G ...

Added by balkan7 on Thu, 16 May 2019 16:20:21 +0300

openssl certificate issuance under linxu

openssl components have been integrated in linux, so bloggers use examples to explain how to issue certificates under Linux system, because personal certificates are not recognized by Google Browser, so self-issued certificates can only be tested under Firefox browser! 1 openssl Certificate Generation Process Once the certific ...

Added by chrispos on Tue, 14 May 2019 20:00:37 +0300