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/env node | |
// sudo npm install linode-api -g | |
// Show distribution list & datacenter list & linode plans | |
var my_api_key = '---KEY-HERE-----'; | |
var client = new(require('linode-api').LinodeClient)(my_api_key); | |
client.call('avail.distributions', {}, function (err, res) { | |
if (err) throw err; | |
console.log(res); |
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
## This is a sample configuration file. See the nxlog reference manual about the | |
## configuration options. It should be installed locally under | |
## /usr/share/doc/nxlog-ce/ and is also available online at | |
## http://nxlog.org/nxlog-docs/en/nxlog-reference-manual.html | |
######################################## | |
# Global directives # | |
######################################## | |
User nxlog | |
Group nxlog |
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
Vagrant.configure(2) do |config| | |
config.vm.define "base", primary: true do |base| | |
base.vm.box = "chef/centos-6.6" | |
base.vm.network "private_network", ip: "10.1.1.10" | |
base.vm.provision "ansible" do |ansible| | |
ansible.playbook = "ansible/playbooks/n3vagrant-basepackages.yml" | |
ansible.sudo = true | |
end | |
end | |
config.vm.define "nginx" do |nginx| |
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
## phppgadmin config for nginx (headache) | |
location ~ ^/phppg { | |
root /path/path/www/; | |
location ~ ^/phppg/(.+\.php$) { | |
root /path/path/www/; | |
fastcgi_intercept_errors on; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
fastcgi_pass php; |
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
[Unit] | |
Description=supervisord - Supervisor process control system for UNIX | |
Documentation=http://supervisord.org | |
After=network.target | |
[Service] | |
Type=forking | |
ExecStart=/usr/bin/supervisord -c /etc/supervisor.d/supervisord.conf | |
ExecReload=/usr/bin/supervisorctl reload | |
ExecStop=/usr/bin/supervisorctl shutdown |
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/env casperjs | |
// npm -g install phantomjs | |
// npm -g install casperjs | |
// Reminder: PATH_NODE pointed to the correct node modules location please | |
var utils = require('utils'); | |
var casper = require('casper').create(); |
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
$tail -f /var/log/applications/application.log | awk ' | |
// {print $0} | |
/INFO/ {print "\033[32m" $0 "\033[39m"} | |
' |
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
- name: Generating RSA key for root | |
user: name=root generate_ssh_key=yes | |
- name: Downloading pub key | |
fetch: src=/root/.ssh/id_rsa.pub dest=/tmp/id_rsa.tmp flat=yes | |
- name: Copying local key to other.server.net | |
local_action: shell cat /tmp/id_rsa.tmp | ssh -p 2244 [email protected] "cat >> /root/.ssh/authorized_keys" | |
- name: Deleting temporal files |
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/env python | |
# https://vicendominguez.blogspot.com | |
# v0.01 | |
import re | |
def main(): | |
# VARIABLES |
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/env python | |
import os, smtplib | |
from sys import exit |