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
| user www-data; | |
| worker_processes 8; | |
| worker_rlimit_nofile 5120000; | |
| error_log /var/log/nginx/error.log; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| # multi_accept on; |
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
| fastcgi_param QUERY_STRING $query_string; | |
| fastcgi_param REQUEST_METHOD $request_method; | |
| fastcgi_param CONTENT_TYPE $content_type; | |
| fastcgi_param CONTENT_LENGTH $content_length; | |
| fastcgi_param HTTP_HOST $http_host; | |
| fastcgi_param SCRIPT_NAME $fastcgi_script_name; | |
| fastcgi_param REQUEST_URI $request_uri; | |
| fastcgi_param DOCUMENT_URI $document_uri; |
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
| #/bin/sh | |
| sync; echo 3 > /proc/sys/vm/drop_caches |
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
| <?php | |
| error_reporting(E_ALL); | |
| ini_set('max_execution_time',0); | |
| # http://www.vipsocks24.com/ | |
| $list="107.10.35.178:42427 | |
| 108.20.152.202:1415 | |
| 110.142.196.145:43134 | |
| 115.118.195.23:1080 | |
| 115.252.100.245:1080 | |
| 115.252.143.165:1080 |
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
| <?php | |
| header('Content-type: text/html; charset=UTF-8'); | |
| include('GoogleSearch.php'); | |
| $kelime="Ahmet Kaya"; | |
| $google=new GoogleSearch(); | |
| $google->setLang("tr"); |
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
| #/usr/bin/sh | |
| echo "############## Build Essential Kuruluyor..##############" | |
| apt-get install build-essential | |
| echo "############## Nginx Kuruluyor.. ##############" | |
| apt-get install nginx | |
| echo "############## php5-cgi,php5-cli,php5-dev,php-pear Kuruluyor.. (apt-get install php5-cgi php5-cli php5-dev php-pear) ##############" | |
| apt-get install php5-fpm php5-cgi php5-cli php5-dev php-pear | |
| echo "############## php mongo kuruluyor ( pecl install mongo ) ##############" | |
| pecl install mongo | |
| echo "############## curl ve php-curl kuruluyor ( apt-get install curl php5-curl ) " |
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
| #/bin/sh | |
| /etc/init.d/nginx stop | |
| /etc/init.d/php5-fpm restart | |
| /etc/init.d/nginx start |
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
| <?php | |
| /* | |
| Template sistemi entegre edilebilinir. | |
| Kullanımı: | |
| php make.php site.com | |
| */ | |
| $domain=trim($argv['1']); | |
| $template='server { | |
| server_name www.domain.com domain.com; | |
| access_log off; |
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
| #/bin/sh | |
| netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1 |
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
| <?php | |
| /* | |
| Hesabı dosyalarla birlikte siler. | |
| Kullanımı: | |
| php unmake.php site.com | |
| */ | |
| $domain=trim($argv['1']); | |
| $komuts[]="rm -rf /var/www/www.".$domain."/"; | |
| $komuts[]="unlink /etc/nginx/sites-enabled/www.".$domain; |