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 / run_Jenkins_in_docker.md
Last active July 21, 2020 14:46
simple gist for runing jenkins

usefull commands

  • delete all containers : to run sudo commands on script and to not get propted for the password add
username ALL = NOPASSWD: /fullpath/to/command, /fullpath/to/othercommand

/fullpath/to/command can be /usr/bin/apt and this line shoud be added to

this is some useful commands i usually forget a lot.

  • export mongo database
$ mongodump -d db -o your/path/here
  • import mongo database
$  mongorestore --db storeinostore --verbose ./data
@BrahimAfa
BrahimAfa / node_nginx_ssl.md
Last active March 29, 2022 21:08 — forked from bradtraversy/node_nginx_ssl.md
Node app deploy with nginx & SSL

Node.js Deployment

Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt

1. Sign up for Digital Ocean

If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a

2. Create a droplet and log in via ssh

I will be using the root user, but would suggest creating a new user

@BrahimAfa
BrahimAfa / mongodb_3.2.x_logging.md
Created September 18, 2020 09:21 — forked from leommoore/mongodb_3.2.x_logging.md
MongoDB 3.2.x Logging

MongoDB 3.2.x Logging

The main log file is the mongod.log. You can specify the log file location when you are starting the mongod process but if you have installed on Ubuntu from a package then you log file will normally be located in /var/log/mongodb/mongod.log.

You can tail the log file using:

tail -f /var/log/mongodb/mongod.log

From the Mongo shell you can also view the log file using:

show logs

storage:
dbPath: "/data/db"
journal:
enabled: true
systemLog:
destination: file
path: "/var/log/mongodb.log"
logAppend: true
timeStampFormat: iso8601-utc
processManagement:
@BrahimAfa
BrahimAfa / PDO_Cheatsheet.php
Last active March 7, 2021 11:51 — forked from hanvari/PDO_Cheatsheet.php
PHP PDO Cheatsheet
<?php
/*
Reference:
http://code.tutsplus.com/tutorials/why-you-should-be-using-phps-pdo-for-database-access--net-12059
*/
function connect(){
/*
@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}"
}
@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 / 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 / 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)