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
<?php | |
/** | |
* DDNS Service: Custom | |
* DYNDNS Server: <yourserver.com> | |
* Username: | |
* Password: | |
* Host Name: | |
* URL: /cloudflare_update.php?key=&hostname= | |
*/ | |
/** |
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
# http://www.opscode.com/blog/2013/03/11/chef-11-server-up-and-running/ | |
# https://github.com/opscode/omnibus-chef-server/blob/master/files/chef-server-cookbooks/chef-server/attributes/default.rb | |
# http://www.opscode.com/blog/2013/03/12/5106/ | |
server_name = "chef.domain" | |
api_fqdn server_name | |
rabbitmq['enable'] = false | |
rabbitmq['node_port'] = '5672' | |
#rabbitmq['node_ip_address'] = '10.12.10.65' | |
rabbitmq['node_ip_address'] = '127.0.0.1' | |
rabbitmq['nodename'] = 'chef@localhost' |
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
copy proxmox iso on usb stick | |
#fdisk -l | |
#mount /dev/sdb1 /mnt | |
#mount -o loop -t iso9660 /mnt/proxmox_1-7.iso /mnt | |
#cd /mnt | |
#chroot /mnt sbin/unconfigured.sh |
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
<?php | |
class ahRemoveYoastNag_Remove_Yoast_SEO_Nag { | |
private $yoastPluginFile; | |
public function __construct() { | |
$this->yoastPluginFile = "wordpress-seo/wp-seo.php"; |