This file contains 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 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
# my.cnf for TAKIS Server | |
# BEGIN CONFIG INFO | |
# DESCR: 8 GB RAM, InnoDB only, ACID, few connections, heavy queries | |
# TYPE: SYSTEM | |
# END CONFIG INFO | |
[client] | |
port = 7000 | |
socket = /var/lib/mysql/mysql.sock |
This file contains 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/bash | |
#---------------------------------------- | |
# OPTIONS | |
#---------------------------------------- | |
USER='root' # MySQL User | |
PASSWORD='' # MySQL Password | |
DAYS_TO_KEEP=0 # 0 to keep forever | |
GZIP=1 # 1 = Compress | |
BACKUP_PATH='/home/itops/backups/mysql' | |
#---------------------------------------- |
This file contains 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
[ | |
{ "keys": [":", "s", "p"], "command": "travel_to_pane", "args": {"direction": "up"} }, | |
{ "keys": [":", "v", "s", "p"], "command": "travel_to_pane", "args": {"direction": "right"} }, | |
{ "keys": [":", "b", "d"], "command": "destroy_pane", "args": {"direction": "self"} }, | |
{ "keys": [":", "p", "z"], "command": "zoom_pane", "args": {"fraction": 1} }, | |
{ "keys": [":", "p", "z", "d"], "command": "unzoom_pane", "args": {} }, | |
{ "keys": [":", "p", "u"], "command": "travel_to_pane", "args": {"direction": "up"} }, | |
{ "keys": [":", "p", "r"], "command": "travel_to_pane", "args": {"direction": "right"} }, | |
{ "keys": [":", "p", "d"], "command": "travel_to_pane", "args": {"direction": "down"} }, | |
{ "keys": [":", "p", "l"], "command": "travel_to_pane", "args": {"direction": "left"} } |
This file contains 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
server { | |
root /var/www/backend.app.snappbit.com; | |
index index.php index.html index.htm; | |
server_name backend.app.snappbit.com; | |
charset utf-8; |
This file contains 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/bash | |
## Install PageSpeed on Debian 8/9 and Ubuntu 16.04 64Bits | |
## https://www.howtoforge.com/tutorial/how-to-install-nginx-and-google-pagespeed-on-ubuntu-16-04/ | |
## http://nginx.org/en/linux_packages.html | |
## https://www.modpagespeed.com/doc/build_ngx_pagespeed_from_source | |
## https://developers.google.com/speed/pagespeed/module/ | |
## Debian ISO: https://cdimage.debian.org/cdimage/archive/8.9.0/amd64/iso-cd/ | |
## No Link abaixo tem o pacote do Nginx para o Debian 8 64Bits | |
## https://github.com/jniltinho/ispconfig/tree/master/packages/debian/jessie | |
## Run as root (sudo su) |
This file contains 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 config will host your main [Laravel] GUI application at /, and any additional [Lumen] webservices at /api/v1 and /api/v2... | |
# This also works perfectly for all static file content in all projects | |
# This is full of debug comments so you can see how to print debug output to browser! Took me hours to nail this perfect config. | |
# Example: | |
# http://example.com - Main Laravel site as usual | |
# http://example.com/about - Main Laravel site about page as usual | |
# http://example.com/robots.txt - Main Laravel site static content as usual | |
# http://example.com/api/v1 - Lumen v1 api default / route | |
# http://example.com/api/v1/ - Lumen v1 api default / route |
This file contains 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
#codebazan-IR { | |
background: #fff; | |
position: fixed; | |
top: 17%; | |
left: 32%; | |
padding: 10px 1px; | |
text-align: center; | |
width: 30%; | |
border: 6px solid #28A9CC; | |
transition: .5s; |
This file contains 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
ssh-keygen -l -E md5 -f ~/.ssh/user_key.pub |