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
| http://linuxmanage.com/master-slave-powerdns-managed-by-poweradmin.html | |
| https://www.vpsserver.com/community/tutorials/9/setup-a-master-to-master-replication-between-two-mariadb-servers/ | |
| http://msutic.blogspot.com/2015/02/mariadbmysql-master-master-replication.html | |
| https://www.digitalocean.com/community/tutorials/how-to-configure-dns-replication-on-a-slave-powerdns-server-on-ubuntu-14-04 | |
| https://www.tecmint.com/mariadb-master-slave-replication-on-centos-rhel-debian/ | |
| https://www.techrepublic.com/article/how-to-set-up-database-replication-with-mariadb/ | |
| https://www.digitalocean.com/community/tutorials/how-to-import-and-export-databases-in-mysql-or-mariadb |
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: orbeon | |
| deployments: | |
| - containers: | |
| - image: bitnami/tomcat:9.0-master | |
| env: | |
| - name: TOMCAT_USERNAME | |
| value: admin | |
| - name: TOMCAT_PASSWORD | |
| value: thisisnotapassword |
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
| #!/bin/bash | |
| echo -e " \e[1mSetting up Project ID" | |
| gcloud config set project hello-k8s-205801 | |
| if [ $? -eq 0 ]; then | |
| echo -e " \e[1mSetting up zone" | |
| gcloud config set compute/zone us-central1-b | |
| echo -e " \e[1mSetting up clusters" | |
| gcloud container clusters create hello-cluster --num-nodes=5 |
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
| # config file for ansible -- https://ansible.com/ | |
| # =============================================== | |
| # nearly all parameters can be overridden in ansible-playbook | |
| # or with command line flags. ansible will read ANSIBLE_CONFIG, | |
| # ansible.cfg in the current working directory, .ansible.cfg in | |
| # the home directory or /etc/ansible/ansible.cfg, whichever it | |
| # finds first | |
| [defaults] |
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
| [webserver] | |
| localhost |
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: localhost | |
| become: true | |
| roles: | |
| - ansible-role-php7 |
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
| #!/bin/bash | |
| # | |
| # Ansible role test shim. | |
| # | |
| # Usage: [OPTIONS] ./tests/test.sh | |
| # - distro: a supported Docker distro version (default = "centos7") | |
| # - playbook: a playbook in the tests directory (default = "test.yml") | |
| # - role_dir: the directory where the role exists (default = $PWD) | |
| # - cleanup: whether to remove the Docker container (default = true) | |
| # - container_id: the --name to set for the container (default = timestamp) |
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
| <!DOCTYPE html> | |
| <html lang="{{ app()->getLocale() }}"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <title>@yield('title', config('app.name'))</title> | |
| <link rel="stylesheet" href="{{ mix('/assets/app.css') }}" type="text/stylesheet"/> | |
| </head> | |
| <body> |
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
| const utils = require('./utils'); | |
| const mix = require('laravel-mix'); | |
| /* | |
| |------------------------------------------------------------------------------ | |
| | | |
| |------------------------------------------------------------------------------ | |
| | | |
| | | |
| | |
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
| @charset "utf-8"; | |
| /* | |
| |------------------------------------------------------------------------------ | |
| | Import The Preferred CSS Framework | |
| |------------------------------------------------------------------------------ | |
| | | |
| | Firstly, we need to import the CSS framework that will serve | |
| | as the foundation of our styles. By default, we will use | |
| | the Bulma CSS framework which is great for starter. |