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
# Default is to use pool 1 | |
set $custom_php_pool "1"; | |
# If is /admin, we use pool 2 | |
if ($uri ~* "^/index.php/admin/") { | |
set $custom_php_pool "2"; | |
} | |
if ($uri ~* "^/qbonline/") { | |
set $custom_php_pool "2"; | |
} |
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
# | |
# Upstart Configuration File for Ubuntu 14.10 - to run syncthing | |
# | |
# Created 27 Dec 2014 - initial file written based on version from | |
# Syncthing forums here: | |
# https://forum.syncthing.net/t/keeping-syncthing-running-ubuntu-upstart/30 | |
# | |
# | |
# BEFORE USE: change: | |
# |
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
jQuery(document.links).filter(function() { | |
return !this.target; | |
}).filter(function() { | |
return this.hostname !== window.location.hostname; | |
}).filter(function() { | |
return this.hostname != /javascript:/.test(this.hostname); | |
}).attr('target', '_blank'); |
OlderNewer