Skip to content

Instantly share code, notes, and snippets.

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

Thiago Przyczynski thiagoprz

🏠
Working from home
View GitHub Profile
@thiagoprz
thiagoprz / laravelnginx
Created September 8, 2020 12:47
Configuração de host para servidor Nginx utilizado pelo Laravel (5.5+)
fastcgi_cache_path /etc/nginx-cache levels=1:2 keys_zone=phpcache:100m inactive=60m;
fastcgi_cache_key "$scheme$request_method$host$request_uri";
server {
client_max_body_size 100M;
root /home/$$USER$$/$$DIRECTORY$$;
index index.php index.html index.htm;
server_name _;
charset utf-8;
gzip on;
gzip_vary on;
import { Directive, Input, HostListener, ElementRef, Renderer } from '@angular/core';
import { NG_VALUE_ACCESSOR } from '@angular/forms';
var BrModel = (function () {
function BrModel() {
}
return BrModel;
}());
export { BrModel };
var BrMaskerIonic3 = (function () {
function BrMaskerIonic3(_renderer, _elementRef) {