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
| { | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": "*", | |
| "Resource": "*" | |
| } | |
| ] | |
| } |
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
| UserParameter=sendmail.msgsfrom,/usr/sbin/mailstats | grep esmtp | awk '{print $$2}' | |
| UserParameter=sendmail.msgsto,/usr/sbin/mailstats | grep esmtp | awk '{print $$4}' | |
| UserParameter=sendmail.msgsreject,/usr/sbin/mailstats | grep esmtp | awk '{print $$6}' | |
| UserParameter=sendmail.msgsdiscard,/usr/sbin/mailstats | grep esmtp | awk '{print $$7}' | |
| UserParameter=sendmail.msgsquarantine,/usr/sbin/mailstats | grep esmtp | awk '{print $$8}' | |
| UserParameter=sendmail.bytesfrom,/usr/sbin/mailstats | grep esmtp | awk '{print $$3}' | tr -d [:alpha:] | tr -d [:punct:] | |
| UserParameter=sendmail.bytesto,/usr/sbin/mailstats | grep esmtp | awk '{print $$5}' | tr -d [:alpha:] | tr -d [:punct:] |
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
| add_action('wp_head','nocdn_on_ssl_page'); | |
| function nocdn_on_ssl_page() { | |
| if ($_SERVER['HTTPS'] == "on") { | |
| define('DONOTCDN', true); | |
| } | |
| } |
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
| set $ssl off; | |
| if ($ssl_protocol != "" ) { | |
| set $ssl on; | |
| } | |
| fastcgi_param HTTPS $ssl; |
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
| myssh-copy-id() | |
| { | |
| cat ~/.ssh/id_rsa.pub | ssh $1 "mkdir ~/.ssh; cat >> ~/.ssh/authorized_keys" | |
| } | |
| alias ssh-copy-id=myssh-copy-id | |
NewerOlder