This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |