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 auto; | |
| pid /run/nginx.pid; | |
| worker_rlimit_nofile 100000; | |
| events { | |
| #worker_connections 1024; | |
| worker_connections 10000; | |
| use epoll; |
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
| # For more options and information see | |
| # http://www.raspberrypi.org/documentation/configuration/config-txt.md | |
| # Some settings may impact device functionality. See link above for details | |
| # uncomment if you get no picture on HDMI for a default "safe" mode | |
| #hdmi_safe=1 | |
| # uncomment this if your display has a black border of unused pixels visible | |
| # and your display can output without overscan | |
| #disable_overscan=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
| build_settings: | |
| clone_depth: 1 | |
| verbose: false | |
| ignore: | |
| - "migrations" | |
| - "public" | |
| - "resources" | |
| - "tmp" | |
| - "tests" | |
| - "vendor" |
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
| """ Configurações iniciais | |
| set nocompatible " Must come first because it changes other options. | |
| filetype off " Necessary on some Linux distros for pathogen to properly load bundles | |
| " Habilitando o Vundle | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#rc() |
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
| ; Enable apc extension module | |
| extension = apc.so | |
| ; Options for the APC module version >= 3.1.3 | |
| ; See http://www.php.net/manual/en/apc.configuration.php | |
| ; This can be set to 0 to disable APC. | |
| apc.enabled=1 | |
| ; The number of shared memory segments to allocate for the compiler cache. | |
| apc.shm_segments=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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project name="Software" default="build" basedir="."> | |
| <tstamp/> | |
| <property name="application.library" value="${project.basedir}/library"/> | |
| <property name="application.tests" value="${project.basedir}/tests"/> | |
| <property name="application.builddir" value="${project.basedir}/build"/> | |
| <property name="ftp.host" value="" /> |
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 | |
| iptables -t nat -F | |
| iptables -t nat -A POSTROUTING -s 201.33.19.171 -j SNAT --to-source 201.33.19.177-201.33.19.178 |
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 | |
| iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o venet0 -m statistic --mode nth --every 5 -j SNAT --to-source 201.33.19.171 | |
| iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o venet0 -m statistic --mode nth --every 5 -j SNAT --to-source 201.33.19.177 | |
| iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o venet0 -m statistic --mode nth --every 5 -j SNAT --to-source 201.33.19.178 |
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
| ; Enable xdebug extension module | |
| zend_extension=/usr/lib64/php/modules/xdebug.so | |
| ; ativado por padrão | |
| xdebug.default_enable = 1 | |
| ; iniciar automaticamente | |
| xdebug.auto_start = 1 | |
| ; ativa a depuração remota de scripts (mas os torna mais lentos) |
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
| DELIMITER $$ | |
| CREATE PROCEDURE `db_status`(dbname varchar(50)) | |
| begin | |
| ( | |
| select | |
| TABLE_NAME as `Table Name`, | |
| ENGINE as `Engine`, | |
| TABLE_ROWS as `Rows`, |
NewerOlder