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
###docker-compose | |
version: '3' | |
services: | |
redis: | |
image: "redis:alpine" | |
networks: | |
- envoymesh | |
proxy: | |
build: | |
context: . |
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
<?php | |
include_once 'Integrator.class.php'; | |
$paylive="https://app.slydepay.com.gh/payLIVE/detailsnew.aspx?pay_token="; | |
$ns="http://www.i-walletlive.com/payLIVE"; | |
$wsdl="https://app.slydepay.com.gh/webservices/paymentservice.asmx?wsdl"; | |
$settings = parse_ini_file("config.ini"); |
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
--- | |
# - name: Instal AWS CLI on Node(s) | |
# user: ubuntu | |
# sudo: True | |
# hosts: all | |
# tasks: | |
# - name: Install Python PIP | |
# apt: pkg=python-pip state=present | |
# - name: Install boto via PIP | |
# pip: name=boto state=latest |
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
--- | |
- hosts: webservers | |
tasks: | |
- name: Install Apache | |
apt: pkg=apache2 update_cache=true state=installed | |
- name: Install bunch of php packages | |
apt: pkg={{ item }} update_cache=true state=installed | |
with_items: | |
- php5 | |
- php5-cli |