This file contains 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
#!/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 |
This file contains 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
angular | |
.module('241App.site.directives', []) | |
.directive('pmtMap', mapDirective) | |
.directive('pmtIconSvg', iconSvg2Directive); | |
function vodSvgDirective() { | |
return { | |
restrict: 'E', | |
replace: 'true', |
This file contains 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
# 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 |