This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This configuration file is provided on an "as is" basis, | |
| # with no warranties or representations, and any use of it | |
| # is at the user's own risk. | |
| user www-data; | |
| worker_processes 4; | |
| pid /run/nginx.pid; | |
| events { | |
| worker_connections 768; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Resource: | |
| https://support.rackspace.com/how-to/install-epel-and-additional-repositories-on-centos-and-red-hat/ | |
| #Step 1 - Add the IUS Repo | |
| wget https://centos7.iuscommunity.org/ius-release.rpm | |
| #Add it to YUM, U=upgrade, v=verbose, h=hash | |
| sudo rpm -Uvh ius-release*.rpm | |
| #Step 2 - Add the yum plugin replace package |
NewerOlder