View firehol_service_mongo.conf
#FHVER: 1:213 | |
server_mongoweb_ports="tcp/28017" | |
client_mongoweb_ports="default" |
View firehol.conf
# | |
# $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). |
View de.appplant.cordova.plugin.local-notification-index.html
<!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() { |
View nginx.conf
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; |
View nginx.conf
### 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, |
View tmux.conf
# 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 |
View fail2ban_jail.conf
#nano /etc/fail2ban/jail.conf | |
# | |
[nginx-4xx] | |
enabled = true | |
port = http,https | |
filter = nginx-4xx | |
logpath = /usr/local/nginx/logs/access.log | |
maxretry = 4 |
View postfix_main.cf
# 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 |
View postfix_master.cf
# | |
# 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) | |
# ========================================================================== |
View spamhaus-iptable.sh
#!/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