Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
input { | |
file { | |
#if you are reading files that syslog-ng has written to. | |
path => ["/var/log/syslog-ng.log"] | |
type => "syslog" | |
tags => [ "network" ] | |
} | |
tcp { | |
#if syslog-ng is relaying to logstash on TCP/514 | |
port => 514 |
#!/bin/bash | |
# | |
# NOTE: This must be run as root! | |
# | |
# Install necessary stuff to get fig running on a vanilla Ubuntu 14.04 image. | |
# | |
# This should really be put in some automated deployment system, but it's a | |
# good reference point for trying out fig and docker on an AWS or similar cloud. | |
# | |
# You can also use this to ensure that your development machine is up and running |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
I have added this patch which should fix it | |
Payment.php | |
Add at line 1939 | |
if($this->getConfigData('proxy_enabled')) { | |
$proxy_user_pwd = $this->getConfigData('proxy_user').':'.$this->getConfigData('proxy_pass'); | |
$proxy_host_port = 'http://'.$this->getConfigData('proxy_host').':'.$this->getConfigData('proxy_port'); | |
curl_setopt($curlSession, CURLOPT_PROXYUSERPWD, $usrPwd); | |
curl_setopt($curlSession, CURLOPT_PROXY, $proxy_host_port); | |
} |
body { | |
color: #333333; | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; | |
} |
[root@puppet ~]# cd /tmp/puppet/test6 | |
[root@puppet test6]# puppet apply test.pp | |
notice: /Stage[main]//Exec[test2]/returns: executed successfully | |
notice: Finished catalog run in 0.30 seconds | |
[root@puppet test6]# ls | |
output2 test.pp | |
[root@puppet test6]# cat test.pp |
This playbook has been removed as it is now very outdated. |
--- | |
#### | |
#### THIS IS OLD AND OUTDATED | |
#### LIKE, ANSIBLE 1.0 OLD. | |
#### | |
#### PROBABLY HIT UP https://docs.ansible.com MY DUDES | |
#### | |
#### IF IT BREAKS I'M JUST SOME GUY WITH | |
#### A DOG, OK, SORRY | |
#### |
authors: | |
hanzou: | |
name: Hanzou Hattori | |
display_name: Hanzou | |
gravatar: c66919cb194f96c696c1da0c47354a6a | |
email: [email protected] | |
web: http://company.com | |
twitter: company | |
github: hhattori | |
jorgen: |