Skip to content

Instantly share code, notes, and snippets.

View breekoy's full-sized avatar
🏠
Working from home

Bree C. Dingding breekoy

🏠
Working from home
View GitHub Profile
@breekoy
breekoy / blacklist.txt
Last active October 6, 2020 11:01
PiHole blacklist
r1---sn-p5qlsndz.googlevideo.com
r2---sn-p5qlsndz.googlevideo.com
r3---sn-p5qlsndz.googlevideo.com
r4---sn-p5qlsndz.googlevideo.com
r5---sn-p5qlsndz.googlevideo.com
r6---sn-p5qlsndz.googlevideo.com
r7---sn-p5qlsndz.googlevideo.com
r8---sn-p5qlsndz.googlevideo.com
r9---sn-p5qlsndz.googlevideo.com
r10---sn-p5qlsndz.googlevideo.com
@breekoy
breekoy / lumen-windows-server-2016-config
Last active August 28, 2019 07:09
install lumen micro-framework on windows server 2016
requirements
- IIS
- CGI for IIS
1. enable IIS and CGI for IIS
2. download and extract PHP
3. move the extracted PHP folder to C:\ and rename it to 'php'
4. Open the php.ini file and add the following line at the end of the file.
extension=wincache
<template>
<div class="savings-deposit entity-info no-tab">
<b-card no-body>
<div class="m-3">
<b-card class="mb-0">
<b-tree
id="tree"
ref="tree"
:data="tree_data">
@breekoy
breekoy / centos7-nginx-laravel-configuration
Last active April 25, 2024 01:57
Configuration steps on CentOS7 server to run Laravel applications + Redis and Node.JS on nginx
==== CENTOS 7 LEMP STACK INSTALLATION ====
0. Make sure the centos 7 server have internet connection
1. Install the EPEL Repository
sudo yum -y install epel-release
2. Install the Remi Repository
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
3. Install Nginx
@breekoy
breekoy / nginx.conf
Created July 28, 2018 13:27
config file for nginx web server with php
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
@breekoy
breekoy / my.ini
Last active April 14, 2018 06:17
MySQL config file for systems with high RAM capacity and performs heavy and complex queries
#BEGIN CONFIG INFO
#DESCR: 4GB RAM, InnoDB only, ACID, few connections, heavy queries
#TYPE: SYSTEM
#END CONFIG INFO
#
# This is a MySQL example config file for systems with 4GB of memory
# running mostly MySQL using InnoDB only tables and performing complex
# queries with few connections.
#
@breekoy
breekoy / php.ini
Last active March 25, 2018 05:29
PHP ini file for Microsoft IIS Web Server
[PHP]
;;;;;;;;;;;;;;;;;;;
; About php.ini ;
;;;;;;;;;;;;;;;;;;;
; PHP's initialization file, generally called php.ini, is responsible for
; configuring many of the aspects of PHP's behavior.
; PHP attempts to find and load this configuration from a number of locations.
; The following is a summary of its search order: