eva2000
Active Member
Since a few members here are using my Centmin Mod LEMP web stack for their servers, just a heads up I just switched my centminmod.com domain's DNS over to the new server cluster which sports the new centminmod.com web site design.
Also Centmin Mod 1.2.3-eva2000.08 stable release is here - well official release date is July 31st, 2015 which would be about right once DNS updates worldwide. This new release has been in development for past 12+ months, so I am glad to have it released now. You can check outs what's new here or on the new site if DNS has propagated in your neck of the woods.
For folks who don't like reading, the quickest way to install Centmin Mod is now via one liner command
However, there's other methods outlined here as well Download
New method of adding Nginx domain via command line too via /usr/bin/nv as outlined here Nginx Vhost & NSD DNS Setup
To create a new site domain Nginx vhost account for newdomain.com with self-signed SSL enabled and Pure-FTPD virtual FTP username = MYFTPUSERNAME, type the following in SSH command line.
Then bookmark and read the Getting Started Guide
Also Centmin Mod 1.2.3-eva2000.08 stable release is here - well official release date is July 31st, 2015 which would be about right once DNS updates worldwide. This new release has been in development for past 12+ months, so I am glad to have it released now. You can check outs what's new here or on the new site if DNS has propagated in your neck of the woods.
For folks who don't like reading, the quickest way to install Centmin Mod is now via one liner command
Code:
curl -sL http://centminmod.com/installer.sh | bash
New method of adding Nginx domain via command line too via /usr/bin/nv as outlined here Nginx Vhost & NSD DNS Setup
To create a new site domain Nginx vhost account for newdomain.com with self-signed SSL enabled and Pure-FTPD virtual FTP username = MYFTPUSERNAME, type the following in SSH command line.
Code:
/usr/bin/nv -d newdomain.com -s y -u MYFTPUSERNAME
Code:
So essentially to install Centmin Mod LEMP and setup newdomain.com in Nginx vhost, you only need 2 commands in SSH as root user on a fresh CentOS 6 or 7 based OS server.
Code:
curl -sL http://centminmod.com/installer.sh | bash
/usr/bin/nv -d newdomain.com -s y -u MYFTPUSERNAME
Code:
or one line when you combine them :)
Code:
curl -sL http://centminmod.com/installer.sh | bash; /usr/bin/nv -d newdomain.com -s y -u MYFTPUSERNAME
Last edited by a moderator: