Skip to content

Instantly share code, notes, and snippets.

View BrahimAfa's full-sized avatar
🐢
Creating bugs

Brahim Afassy BrahimAfa

🐢
Creating bugs
View GitHub Profile
@BrahimAfa
BrahimAfa / Install Nginx.md
Created October 26, 2021 00:02 — forked from janikvonrotz/Install Nginx.md
Ubuntu: Install Nginx #Nginx #Markdown

Introduction

Nginx (pronounced "engine-ex") can be used as an open source reverse proxy server, as well as a load balancer, HTTP cache, and not to forget a fast and powerful web server.

Requirements

  • Ubuntu server

Installation

@BrahimAfa
BrahimAfa / nginx.conf
Created October 9, 2021 12:07 — 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
@BrahimAfa
BrahimAfa / filter.d_nginx-auth.conf
Created September 15, 2021 13:47 — forked from JulienBlancher/filter.d_nginx-auth.conf
Fail2ban Config with Nginx and SSH
#
# Auth filter /etc/fail2ban/filter.d/nginx-auth.conf:
#
# Blocks IPs that makes too much accesses to the server
#
[Definition]
failregex = ^<HOST> -.*"(GET|POST).*HTTP.*"
ignoreregex =
@BrahimAfa
BrahimAfa / reverseproxy.conf
Created September 13, 2021 14:47 — forked from evandhoffman/reverseproxy.conf
nginx reverse proxy config
proxy_cache_path /var/lib/nginx/cache/staticfiles levels=1:2 keys_zone=staticfilecache:120m inactive=180m max_size=50m;
proxy_cache_path /var/lib/nginx/cache/php levels=2:2 keys_zone=php:10m inactive=180m max_size=50m;
proxy_temp_path /var/lib/nginx/proxy;
proxy_connect_timeout 30;
proxy_read_timeout 120;
proxy_send_timeout 120;
#IMPORTANT - this sets the basic cache key that's used in the static file cache.
proxy_cache_key "$scheme://$host$request_uri";
# http://wp-performance.com/2010/10/nginx-reverse-proxy-cache-wordpress-apache/
@BrahimAfa
BrahimAfa / letsencrypt_2020.md
Created August 3, 2021 00:15 — forked from cecilemuller/letsencrypt_2020.md
How to setup Let's Encrypt for Nginx on Ubuntu 18.04 (including IPv6, HTTP/2 and A+ SSL rating)

How to setup Let's Encrypt for Nginx on Ubuntu 18.04 (including IPv6, HTTP/2 and A+ SLL rating)


Virtual hosts

Let's say you want to host domains first.com and second.com.

Create folders for their files:

part 1 : install without docker:

Requirments :

  • .Net-Core SDK 5
  • Microsoft SQL SERVER

step 1: cloning the repo

$ git clone https://github.com/SakhrErr/GestionEmploi_NetCore.git
@BrahimAfa
BrahimAfa / devops_training.txt
Created March 17, 2021 22:30 — forked from ssmythe/devops_training.txt
Training materials for DevOps
======
Videos
======
DevOps
What is DevOps? by Rackspace - Really great introduction to DevOps
https://www.youtube.com/watch?v=_I94-tJlovg
Sanjeev Sharma series on DevOps (great repetition to really get the DevOps concept)
@BrahimAfa
BrahimAfa / mysql.php
Created March 7, 2021 10:52 — forked from mloberg/mysql.php
Simple PHP MySQL Class
<?php
class Mysql{
static private $link = null;
static private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);
@BrahimAfa
BrahimAfa / haproxy-www.tf
Created January 28, 2021 22:53 — forked from mvasilenko/haproxy-www.tf
How To Use Terraform with DigitalOcean
resource "digitalocean_droplet" "haproxy-www" {
image = "ubuntu-14-04-x64"
name = "haproxy-www"
region = "nyc2"
size = "512mb"
private_networking = true
ssh_keys = [
"${var.ssh_fingerprint}"
]
connection {
@BrahimAfa
BrahimAfa / main.tf
Created January 28, 2021 22:52 — forked from CariZa/main.tf
Simple Terraform Digitalocean Configuration
# Set the variable value in *.tfvars file
# or using -var="do_token=..." CLI option
variable "do_token" {}
variable "ssh_key_name" {}
# Configure the DigitalOcean Provider
provider "digitalocean" {
token = "${var.do_token}"
}