Skip to content

Instantly share code, notes, and snippets.

View samayo's full-sized avatar
💬
drink more water

Samson Daniel samayo

💬
drink more water
View GitHub Profile
@samayo
samayo / Collection.md
Last active March 29, 2022 16:32
Snippets

MYSQL

# give access to user
GRANT ALL PRIVILEGES ON website_com.* To 'user_website_com'@'localhost' IDENTIFIED BY 'XXXXXXXX';
CREATE USER 'user_website_com'@'localhost' IDENTIFIED BY 'XXXXXXXX';
mysql -u username -p database_name < file.sql

SCP

@samayo
samayo / peek.md
Last active October 12, 2019 10:46

mysql

# create user
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';    
# grant all privileges    
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';   
# flush privileges   
FLUSH PRIVILEGES;   
GRANT type_of_permission ON database_name.table_name TO ‘username’@'localhost’;    
REVOKE type_of_permission ON database_name.table_name FROM ‘username’@‘localhost’;   
[root@samayo sites]# docker logs some-prestashop
* Reapplying PrestaShop files for enabled volumes ...
* No pre-install script found, let's continue...
* No post-install script found, let's continue...
* Almost ! Starting web server now
@samayo
samayo / 1nginx.conf
Created September 13, 2019 23:08 — forked from josephbolus/1nginx.conf
Wordpress Nginx Config
# ---------------------------------------
# Main Module
# ---------------------------------------
user nginx;
# This number should be, at maximum, the number of CPU cores on your system.
worker_processes 2;
pid /var/run/nginx.pid;
# Only log critical errors
@samayo
samayo / 00_ReadMe.md
Created October 17, 2018 21:57 — forked from mohamed-el-habib/00_ReadMe.md
drupal fpm with nginx and mysql

Usage

git clone git://github.com/fd57d8aa59b1574ee7728edf128814d3.git docker-drupal-fpm
cd docker-drupal-fpm
mkdir -p /usr/local/share/dockervolumes/drupal # if you change this folder please update the run.sh

chmod +x run.sh && ./run.sh up

@samayo
samayo / docker-compose.yml
Created October 16, 2018 17:40
working docker file
version: '3'
services:
db:
container_name: mariadb
build:
context: ./mariadb
volumes:
- ./mariadb/scripts:/docker-entrypoint-initdb.d
- ./.data/db:/var/lib/mysql
<template>
<div class='vue-aws-uploader' :class='wrapperCss'>
<label for="vue-aws-upload" class='fa fa-upload'> Click here to upload your <b>{{ folder }}</b> files </label>
<input type="file" name="file" id="vue-aws-upload" class="vue-aws-upload" @change='init($event)' />
</div>
</template>
<script>
import axios from 'axios'
@samayo
samayo / keybase.md
Created January 12, 2017 11:20
keybase.md

Keybase proof

I hereby claim:

  • I am samayo on github.
  • I am samayo (https://keybase.io/samayo) on keybase.
  • I have a public key whose fingerprint is 7DE1 4E1C 7085 72C1 4BD9 D523 8651 99F6 F632 E04C

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am samayo on github.
  • I am samayo (https://keybase.io/samayo) on keybase.
  • I have a public key whose fingerprint is 7DE1 4E1C 7085 72C1 4BD9 D523 8651 99F6 F632 E04C

To claim this, I am signing this object:

#!/bin/bash
#This is a basic bash script for common commands
set -e
# DIRS
service nginx restart
service php-fpm restart
service mariad restart
mount -t vboxsf www /var/www
setenforce 0