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
#FHVER: 1:213 | |
server_mongoweb_ports="tcp/28017" | |
client_mongoweb_ports="default" |
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
# | |
# $Id: client-all.conf,v 1.2 2002/12/31 15:44:34 ktsaou Exp $ | |
# | |
# This configuration file will allow all requests originating from the | |
# local machine to be send through all network interfaces. | |
# | |
# No requests are allowed to come from the network. The host will be | |
# completely stealthed! It will not respond to anything, and it will | |
# not be pingable, although it will be able to originate anything | |
# (even pings to other hosts). |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Device Ready Example</title> | |
<script type="text/javascript" charset="utf-8" src="cordova.js"></script> | |
<script type="text/javascript" charset="utf-8"> | |
// Wait for device API libraries to load | |
// | |
function onLoad() { |
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
http{ | |
#... | |
#hide server version | |
server_tokens off; | |
# config to don't allow the browser to render the page inside an frame or iframe | |
add_header X-Frame-Options SAMEORIGIN; | |
server { | |
listen 80; |
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
### don't send the nginx version number in error pages and Server header | |
server_tokens off; | |
### config to don't allow the browser to render the page inside an frame or iframe | |
###if you need to allow [i]frames, you can use SAMEORIGIN or even set an uri with ALLOW-FROM uri | |
add_header X-Frame-Options SAMEORIGIN; | |
### when serving user-supplied content, include a X-Content-Type-Options: nosniff header along with the Content-Type: header, |
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
# thanks goes to spicycode | |
# https://gist.github.com/spicycode/1229612 | |
# nano ~/.tmux.conf | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on |
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
#nano /etc/fail2ban/jail.conf | |
# | |
[nginx-4xx] | |
enabled = true | |
port = http,https | |
filter = nginx-4xx | |
logpath = /usr/local/nginx/logs/access.log | |
maxretry = 4 |
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
# See /usr/share/postfix/main.cf.dist for a commented, more complete version | |
# Debian specific: Specifying a file name will cause the first | |
# line of that file to be used as the name. The Debian default | |
# is /etc/mailname. | |
#myorigin = /etc/mailname | |
smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU) | |
biff = no |
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
# | |
# Postfix master process configuration file. For details on the format | |
# of the file, see the master(5) manual page (command: "man 5 master"). | |
# | |
# Do not forget to execute "postfix reload" after editing this file. | |
# | |
# ========================================================================== | |
# service type private unpriv chroot wakeup maxproc command + args | |
# (yes) (yes) (yes) (never) (100) | |
# ========================================================================== |
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 | |
IPT=”/bin/iptables” | |
FILE=”/tmp/drop.lasso” | |
URL=”http://www.spamhaus.org/drop/drop.lasso” | |
echo “” | |
echo -n “Deleting DROP list from existing firewall…” | |
#This will delete all dropped ips from firewall |
OlderNewer