Skip to content

Instantly share code, notes, and snippets.

Resource:
https://support.rackspace.com/how-to/install-epel-and-additional-repositories-on-centos-and-red-hat/
#Step 1 - Add the IUS Repo
wget https://centos7.iuscommunity.org/ius-release.rpm
#Add it to YUM, U=upgrade, v=verbose, h=hash
sudo rpm -Uvh ius-release*.rpm
#Step 2 - Add the yum plugin replace package
# This configuration file is provided on an "as is" basis,
# with no warranties or representations, and any use of it
# is at the user's own risk.
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
@xserveraws
xserveraws / nginx.conf
Created July 21, 2017 19:49 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@xserveraws
xserveraws / README.md
Created September 24, 2017 17:27 — forked from e7d/README.md
[Debian] Setup a Squid anonymous proxy
@xserveraws
xserveraws / squid-xff-log.conf
Created October 9, 2017 20:11 — forked from alvarow/squid-xff-log.conf
Sets Squid Proxy to log IP address from X-Forwarded-For header instead of the real client ip address if the X-Forwarded-For header exists.
# Has XFF header with a value
acl has-xff req_header X-Forwarded-For ^(([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)|(\[([0-9a-f]+)?:([0-9a-f:]+)?:([0-9a-f]+|0-9\.]+)?\]))
# default logformat
logformat squid %ts.%03tu %6tr %>a %Ss/%03>Hs %<st %rm %ru %[un %Sh/%<a %mt
# default logformat using XFF instead of client IP address
logformat squid-xff %ts.%03tu %6tr %{X-Forwarded-For}>h %Ss/%03>Hs %<st %rm %ru %[un %Sh/%<a %mt
<!DOCTYPE html>
<html>
<head>
<title>DB-Convert</title>
<style>
body { font-family:"Courier New", Courier, monospace;" }
</style>
</head>
<body>
@xserveraws
xserveraws / workaround-airmn-ng.sh
Created January 4, 2018 16:01 — forked from mtaziz/workaround-airmn-ng.sh
Workaround for airmon-ng on Kali Linux 2.0
# download compat wireless (compat-wireless-2010-06-26-p.tar.bz2)
# http://linuxwireless.org/download/compat-wireless-2.6/
cd ~/Downloads
ls
tar -jvxf compat-wireless-2010-06-26-p.tar.bz2
ls
cd compat-wireless-2010-06-26-p
make unload
make load
@xserveraws
xserveraws / .gitignore
Created January 5, 2018 02:32
OpenMediaVault USB Write Minimisation
.*.sw?
location ~ /(?:a|A)utodiscover/(?:a|A)utodiscover.xml {
root /var/www/;
try_files /autodiscover/autodiscover.php =404;
fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
include fastcgi.conf;
fastcgi_param SERVER_ADDR "";
fastcgi_param REMOTE_ADDR $http_x_real_ip;
}
@xserveraws
xserveraws / remote-ip.php
Created March 17, 2018 21:53 — forked from dtbaker/remote-ip.php
Self hosted Dynamic DNS / No-IP script in PHP
<?php
/**
* Simple Dynamic DNS / No-IP script for Route53
*
* Setup:
* 1) Setup a new Route53 zone to hold your dynamic DNS records (e.g. dynamic.mywebsite.net)
* 2) Make sure this instance has permission to modify this Route53 zone (e.g. instance IAM profile, .aws credentials or ENV variables)
* 3) Upload this PHP script to your instance (make sure vendor files are availalbe by running: composer require aws/aws-sdk-php)
* 4) Put the allowed hostnames in the list below