Skip to content

Instantly share code, notes, and snippets.

View valmirphp's full-sized avatar

Valmir Barbosa dos Santos valmirphp

View GitHub Profile
@valmirphp
valmirphp / mongo
Last active May 1, 2021 22:43
docker-compose sysgaming
version: '3.4'
services:
mongodb:
image: mongo:latest
container_name: sysgaming_mongo
restart: on-failure
environment:
MONGO_INITDB_DATABASE: sysgaming
@valmirphp
valmirphp / docker-compose.yml
Created May 7, 2020 17:36
Doker: Kong + Konka
version: "3.7"
networks:
kong-net:
name: kong-net
driver: bridge
ipam:
config:
- subnet: 172.1.1.0/24
@valmirphp
valmirphp / nginxfix.sh
Last active June 5, 2019 13:57 — forked from fer-ri/restart-service.sh
Auto Restart PHP5-FPM When Down or Bad Gateway
#!/bin/bash
# add cron: */3 * * * * /root/nginxfix.sh >> /var/log/nginxfix.log 2>&1
# REF: https://www.hrupin.com/2017/07/how-to-automatically-restart-nginx
PATH=/usr/sbin:/usr/bin:/sbin:/bin
if [[ ! "$(/etc/init.d/nginx status)" =~ "active (running)" ]]
then
echo $(date -u) "NGINX server has been stopped. It has now been restarted."
service nginx start
@valmirphp
valmirphp / Elements
Last active May 27, 2019 17:57
Angular
## 1. Create Application
```
ng g application --prefix=moo --routing=false --skip-tests elements
```
## 2. Add elements & polyfill
In order to have elements functionality available we need the Angular library and a polyfill — with the new CLI it’s just a matter of one(!) simple command:
@valmirphp
valmirphp / vod-svg.js
Last active February 18, 2016 04:38 — forked from fergalhanley/vod-svg.js
This AngularJS directive allows changing the color of dynamically loaded SVG files. Subject to same domain policy.
angular
.module('241App.site.directives', [])
.directive('pmtMap', mapDirective)
.directive('pmtIconSvg', iconSvg2Directive);
function vodSvgDirective() {
return {
restrict: 'E',
replace: 'true',
# Cross domain webfont access
location ~* \.(?:ttf|ttc|otf|eot|woff|woff2|svg)$ {
add_header "Access-Control-Allow-Origin" "*";
# Also, set cache rules for webfonts.
#
# See http://wiki.nginx.org/HttpCoreModule#location
# And https://github.com/h5bp/server-configs/issues/85
# And https://github.com/h5bp/server-configs/issues/86
@valmirphp
valmirphp / Angular
Created November 10, 2014 02:11
get scope angular
var sidebar = document.getElementsByTagName('body');
var scope = angular.element(sidebar).scope();
var rootScope = scope.$root;
scope.$apply(function(){
rootScope.$broadcast('loadMap');
});
@valmirphp
valmirphp / DNS
Last active August 29, 2015 14:08
nslookup -type=MX domain.com.br