├── .gitignore ├── Coreseek ├── configure │ ├── api │ │ ├── sphinxapi.php │ │ └── test_index.php │ ├── csft.conf │ └── test.sql ├── readme.txt └── setupShell │ └── coreseekInstall.sh ├── Git ├── readme.txt └── setupShell │ ├── gitInstall.sh │ ├── gitlabInstall.sh │ ├── gitoliteInstall.sh │ └── rubyInstall.sh ├── ImageMagic ├── readme.txt └── setupShell │ └── imagickInstall.sh ├── Init ├── readme.txt └── setupShell │ ├── baseInstall.sh │ ├── iftopInstall.sh │ └── initsetup.sh ├── LICENSE ├── MemCached ├── readme.txt └── setupShell │ ├── memcached.rcd.txt │ └── memcachedInstall.sh ├── MongoDB ├── configure │ └── mongodb.conf ├── readme.txt └── setupShell │ ├── mongodb.rcd.txt │ └── mongodbInstall.sh ├── Mysql ├── configure │ ├── my.cnf │ └── 说明文件.txt ├── readme.txt └── setupShell │ ├── mariadb-jemallocInstall.sh │ ├── mariadbInstall.sh │ ├── mysql-jemallocInstall.sh │ ├── mysqlInstall.sh │ ├── mysqlbackup.sh │ ├── perconaserver-jemallocInstall.sh │ └── perconaserverInstall.sh ├── Nginx ├── configure │ ├── errors │ │ ├── 403.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── 502.html │ │ ├── 503.html │ │ └── 504.html │ ├── nginx.conf │ └── 说明文件.txt ├── readme.txt └── setupShell │ ├── nginx-jemalloc-video-accesskeyInstall.sh │ ├── nginx-jemalloc-videoInstall.sh │ ├── nginx-jemallocInstall.sh │ ├── nginx-vhost-creator.sh │ ├── nginx.rcd.txt │ ├── nginxInstall.sh │ └── tengineInstall.sh ├── PHP ├── configure │ ├── php-fpm.conf │ ├── php.ini │ └── readme.txt ├── readme.txt └── setupShell │ ├── extensions │ ├── imagickExtInstall.sh │ ├── mcExtInstall.sh │ ├── mcdExtInstall.sh │ ├── mongoExtInstall.sh │ ├── redisExtInstall.sh │ ├── xdebugExtInstall.sh │ ├── xhprofExtInstall.sh │ └── yafphpExtInstall.sh │ ├── php5.5Install.sh │ └── php5.6Install.sh ├── README.md ├── Redis ├── readme.txt └── setupShell │ ├── redis.rcd.txt │ └── redisInstall3.0.sh ├── Rsync ├── readme.txt └── setupShell │ ├── inotifyInstall.sh │ ├── rsync.rcd.txt │ └── rsyncInstall.sh ├── postfix ├── configure │ ├── main.cf │ └── smtptest │ │ ├── PHPMailer │ │ ├── class.phpmailer.php │ │ ├── class.pop3.php │ │ ├── class.smtp.php │ │ └── index.html │ │ └── index.php ├── readme.txt └── setupShell │ └── postfixInstall.sh └── sshd ├── readme.txt └── sshkeySever.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/.gitignore -------------------------------------------------------------------------------- /Coreseek/configure/api/sphinxapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Coreseek/configure/api/sphinxapi.php -------------------------------------------------------------------------------- /Coreseek/configure/api/test_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Coreseek/configure/api/test_index.php -------------------------------------------------------------------------------- /Coreseek/configure/csft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Coreseek/configure/csft.conf -------------------------------------------------------------------------------- /Coreseek/configure/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Coreseek/configure/test.sql -------------------------------------------------------------------------------- /Coreseek/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Coreseek/readme.txt -------------------------------------------------------------------------------- /Coreseek/setupShell/coreseekInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Coreseek/setupShell/coreseekInstall.sh -------------------------------------------------------------------------------- /Git/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Git/readme.txt -------------------------------------------------------------------------------- /Git/setupShell/gitInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Git/setupShell/gitInstall.sh -------------------------------------------------------------------------------- /Git/setupShell/gitlabInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Git/setupShell/gitlabInstall.sh -------------------------------------------------------------------------------- /Git/setupShell/gitoliteInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Git/setupShell/gitoliteInstall.sh -------------------------------------------------------------------------------- /Git/setupShell/rubyInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Git/setupShell/rubyInstall.sh -------------------------------------------------------------------------------- /ImageMagic/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/ImageMagic/readme.txt -------------------------------------------------------------------------------- /ImageMagic/setupShell/imagickInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/ImageMagic/setupShell/imagickInstall.sh -------------------------------------------------------------------------------- /Init/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Init/readme.txt -------------------------------------------------------------------------------- /Init/setupShell/baseInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Init/setupShell/baseInstall.sh -------------------------------------------------------------------------------- /Init/setupShell/iftopInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Init/setupShell/iftopInstall.sh -------------------------------------------------------------------------------- /Init/setupShell/initsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Init/setupShell/initsetup.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/LICENSE -------------------------------------------------------------------------------- /MemCached/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/MemCached/readme.txt -------------------------------------------------------------------------------- /MemCached/setupShell/memcached.rcd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/MemCached/setupShell/memcached.rcd.txt -------------------------------------------------------------------------------- /MemCached/setupShell/memcachedInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/MemCached/setupShell/memcachedInstall.sh -------------------------------------------------------------------------------- /MongoDB/configure/mongodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/MongoDB/configure/mongodb.conf -------------------------------------------------------------------------------- /MongoDB/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/MongoDB/readme.txt -------------------------------------------------------------------------------- /MongoDB/setupShell/mongodb.rcd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/MongoDB/setupShell/mongodb.rcd.txt -------------------------------------------------------------------------------- /MongoDB/setupShell/mongodbInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/MongoDB/setupShell/mongodbInstall.sh -------------------------------------------------------------------------------- /Mysql/configure/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/configure/my.cnf -------------------------------------------------------------------------------- /Mysql/configure/说明文件.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/configure/说明文件.txt -------------------------------------------------------------------------------- /Mysql/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/readme.txt -------------------------------------------------------------------------------- /Mysql/setupShell/mariadb-jemallocInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/setupShell/mariadb-jemallocInstall.sh -------------------------------------------------------------------------------- /Mysql/setupShell/mariadbInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/setupShell/mariadbInstall.sh -------------------------------------------------------------------------------- /Mysql/setupShell/mysql-jemallocInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/setupShell/mysql-jemallocInstall.sh -------------------------------------------------------------------------------- /Mysql/setupShell/mysqlInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/setupShell/mysqlInstall.sh -------------------------------------------------------------------------------- /Mysql/setupShell/mysqlbackup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/setupShell/mysqlbackup.sh -------------------------------------------------------------------------------- /Mysql/setupShell/perconaserver-jemallocInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/setupShell/perconaserver-jemallocInstall.sh -------------------------------------------------------------------------------- /Mysql/setupShell/perconaserverInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Mysql/setupShell/perconaserverInstall.sh -------------------------------------------------------------------------------- /Nginx/configure/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/configure/errors/403.html -------------------------------------------------------------------------------- /Nginx/configure/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/configure/errors/404.html -------------------------------------------------------------------------------- /Nginx/configure/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/configure/errors/500.html -------------------------------------------------------------------------------- /Nginx/configure/errors/502.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/configure/errors/502.html -------------------------------------------------------------------------------- /Nginx/configure/errors/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/configure/errors/503.html -------------------------------------------------------------------------------- /Nginx/configure/errors/504.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/configure/errors/504.html -------------------------------------------------------------------------------- /Nginx/configure/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/configure/nginx.conf -------------------------------------------------------------------------------- /Nginx/configure/说明文件.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/configure/说明文件.txt -------------------------------------------------------------------------------- /Nginx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/readme.txt -------------------------------------------------------------------------------- /Nginx/setupShell/nginx-jemalloc-video-accesskeyInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/setupShell/nginx-jemalloc-video-accesskeyInstall.sh -------------------------------------------------------------------------------- /Nginx/setupShell/nginx-jemalloc-videoInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/setupShell/nginx-jemalloc-videoInstall.sh -------------------------------------------------------------------------------- /Nginx/setupShell/nginx-jemallocInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/setupShell/nginx-jemallocInstall.sh -------------------------------------------------------------------------------- /Nginx/setupShell/nginx-vhost-creator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/setupShell/nginx-vhost-creator.sh -------------------------------------------------------------------------------- /Nginx/setupShell/nginx.rcd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/setupShell/nginx.rcd.txt -------------------------------------------------------------------------------- /Nginx/setupShell/nginxInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/setupShell/nginxInstall.sh -------------------------------------------------------------------------------- /Nginx/setupShell/tengineInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Nginx/setupShell/tengineInstall.sh -------------------------------------------------------------------------------- /PHP/configure/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/configure/php-fpm.conf -------------------------------------------------------------------------------- /PHP/configure/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/configure/php.ini -------------------------------------------------------------------------------- /PHP/configure/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/configure/readme.txt -------------------------------------------------------------------------------- /PHP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/readme.txt -------------------------------------------------------------------------------- /PHP/setupShell/extensions/imagickExtInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/extensions/imagickExtInstall.sh -------------------------------------------------------------------------------- /PHP/setupShell/extensions/mcExtInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/extensions/mcExtInstall.sh -------------------------------------------------------------------------------- /PHP/setupShell/extensions/mcdExtInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/extensions/mcdExtInstall.sh -------------------------------------------------------------------------------- /PHP/setupShell/extensions/mongoExtInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/extensions/mongoExtInstall.sh -------------------------------------------------------------------------------- /PHP/setupShell/extensions/redisExtInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/extensions/redisExtInstall.sh -------------------------------------------------------------------------------- /PHP/setupShell/extensions/xdebugExtInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/extensions/xdebugExtInstall.sh -------------------------------------------------------------------------------- /PHP/setupShell/extensions/xhprofExtInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/extensions/xhprofExtInstall.sh -------------------------------------------------------------------------------- /PHP/setupShell/extensions/yafphpExtInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/extensions/yafphpExtInstall.sh -------------------------------------------------------------------------------- /PHP/setupShell/php5.5Install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/php5.5Install.sh -------------------------------------------------------------------------------- /PHP/setupShell/php5.6Install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/PHP/setupShell/php5.6Install.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/README.md -------------------------------------------------------------------------------- /Redis/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Redis/readme.txt -------------------------------------------------------------------------------- /Redis/setupShell/redis.rcd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Redis/setupShell/redis.rcd.txt -------------------------------------------------------------------------------- /Redis/setupShell/redisInstall3.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Redis/setupShell/redisInstall3.0.sh -------------------------------------------------------------------------------- /Rsync/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Rsync/readme.txt -------------------------------------------------------------------------------- /Rsync/setupShell/inotifyInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Rsync/setupShell/inotifyInstall.sh -------------------------------------------------------------------------------- /Rsync/setupShell/rsync.rcd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Rsync/setupShell/rsync.rcd.txt -------------------------------------------------------------------------------- /Rsync/setupShell/rsyncInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/Rsync/setupShell/rsyncInstall.sh -------------------------------------------------------------------------------- /postfix/configure/main.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/postfix/configure/main.cf -------------------------------------------------------------------------------- /postfix/configure/smtptest/PHPMailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/postfix/configure/smtptest/PHPMailer/class.phpmailer.php -------------------------------------------------------------------------------- /postfix/configure/smtptest/PHPMailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/postfix/configure/smtptest/PHPMailer/class.pop3.php -------------------------------------------------------------------------------- /postfix/configure/smtptest/PHPMailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/postfix/configure/smtptest/PHPMailer/class.smtp.php -------------------------------------------------------------------------------- /postfix/configure/smtptest/PHPMailer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/postfix/configure/smtptest/PHPMailer/index.html -------------------------------------------------------------------------------- /postfix/configure/smtptest/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/postfix/configure/smtptest/index.php -------------------------------------------------------------------------------- /postfix/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/postfix/readme.txt -------------------------------------------------------------------------------- /postfix/setupShell/postfixInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/postfix/setupShell/postfixInstall.sh -------------------------------------------------------------------------------- /sshd/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/sshd/readme.txt -------------------------------------------------------------------------------- /sshd/sshkeySever.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doitphp/lnmp/HEAD/sshd/sshkeySever.sh --------------------------------------------------------------------------------