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
server { | |
include /var/aegir/config/includes/fastcgi_params.conf; | |
limit_conn gulag 32; # like mod_evasive - this allows max 32 simultaneous connections from one IP address | |
listen *:80; | |
server_name wordpress.domain.name; | |
root /var/www/siteroot; | |
# Extra configuration from modules: | |
include /var/aegir/config/includes/nginx_wp_include.conf; | |
} |
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
####################################################### | |
### nginx compact basic configuration start | |
####################################################### | |
### | |
### deny crawlers and bots without 403 response | |
### | |
if ($http_user_agent ~* (HTTrack|HTMLParser|libwww|wget|AutomaticSiteMap|bot) ) { | |
return 444; | |
} |
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
require 'formula' | |
class Pngout < Formula | |
url 'http://static.jonof.id.au/dl/kenutils/pngout-20130221-darwin.tar.gz' | |
homepage 'http://www.jonof.id.au/kenutils' | |
sha256 '995cc1df35e68b723c8143ad82c058be763f9af4fc373894ec74de3e7f18d0dd' | |
version '20130221' | |
def install | |
prefix.install Dir['*'] |
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
require 'formula' | |
class Advcomp < Formula | |
homepage 'http://advancemame.sourceforge.net/' | |
url 'http://downloads.sourceforge.net/project/advancemame/advancecomp/1.17/advancecomp-1.17.tar.gz' | |
sha256 '856d064e064c6105986b7cc29d6e2cba477e9ffca4a8830631161f5e7cd18e82' | |
def install | |
system "./configure" | |
system "make install" |
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
### /var/aegir/config/server_master/nginx/pre.d/nginx_wild_ssl.conf | |
upstream nginx_http { | |
server localhost:80; | |
} | |
server { | |
listen *:443 ssl spdy; | |
server_name _; | |
ssl on; | |
ssl_certificate /usr/local/etc/ssl/private/nginx-wild-ssl.crt; | |
ssl_certificate_key /usr/local/etc/ssl/private/nginx-wild-ssl.key; |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Disabled</key> | |
<false/> | |
<key>EnvironmentVariables</key> | |
<dict> | |
<key>PATH</key> | |
<string>/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string> |
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
### | |
### Custom site for xhprof. | |
### | |
server { | |
include fastcgi_params; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
limit_conn limreq 32; # like mod_evasive - this allows max 32 simultaneous connections from one IP address | |
listen *:80; | |
server_name xhprof.ld; |
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
diff --git a/showprotected/dialogs/protected.js b/showprotected/dialogs/protected.js | |
index 9c7ede3..8a06f04 100644 | |
--- a/showprotected/dialogs/protected.js | |
+++ b/showprotected/dialogs/protected.js | |
@@ -3,13 +3,13 @@ CKEDITOR.dialog.add( 'showProtectedDialog', function( editor ) { | |
return { | |
title: 'Edit Protected Source', | |
- minWidth: 300, | |
- minHeight: 60, |
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
diff --git a/wordcount/plugin.js b/wordcount/plugin.js | |
index 4fa20d6..2177247 100644 | |
--- a/wordcount/plugin.js | |
+++ b/wordcount/plugin.js | |
@@ -21,7 +21,7 @@ CKEDITOR.plugins.add('wordcount', { | |
// Default Config | |
var defaultConfig = { | |
showWordCount: true, | |
- showCharCount: false, | |
+ showCharCount: true, |