Host docker-machine-driver-ovh binary
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
| [{ | |
| "id": 1, | |
| "username": "Zad", | |
| "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. ", | |
| "imageUrl": "http://via.placeholder.com/350x150?text=zad", | |
| "date": 1520955941 | |
| },{ | |
| "id": 2, | |
| "username": "Max", | |
| "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", |
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
| { | |
| "feeds": [{ | |
| "uid": "5aa9538ed81fae8da3fd6ee8", | |
| "source": { "source": "http://placehold.it/32x32" }, | |
| "link": "http://placehold.it/32x32", | |
| "title": "Claudette", | |
| "currentOffset": 0, | |
| "imageUrl": "http://placehold.it/32x32", | |
| "language": "fr", | |
| "copyright": null, |
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/sh | |
| set -e | |
| if [ -z "$1" ]; then | |
| echo "Usage: ./wp-config.sh <wp-config.php-path>" | |
| exit 1 | |
| fi | |
| WP_CONFIG_FILE=$1 |
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/sh | |
| set -e | |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 <.htaccess-path>" | |
| exit 1 | |
| fi | |
| HTACCESS_FILE=$1 |
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
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * PHP script that perform a find and replace in a database dump (tested with | |
| * MySQL) with adjustments of the PHP serialize founded. | |
| * | |
| * Don't forget to escape your "special characters": | |
| * "a$b" -> "a\$b" | |
| * "a"b" -> "a\"b" | |
| * "a`b" -> "a\`b" |
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 | |
| // Disable update notification for individual plugin (current) | |
| function filter_plugin_updates($value) { | |
| if ($value) { | |
| unset($value->response[plugin_basename(__FILE__)]); | |
| } | |
| return $value; | |
| } | |
| add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' ); | |
| ?> |
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/sh | |
| set -e | |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 <wp-rocket-config.php-path>" | |
| exit 1 | |
| fi | |
| WP_ROCKET_CONFIG_FILE=$1 |
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> | |
| <head> | |
| <title>This is the title of the webpage!</title> | |
| </head> | |
| <body> | |
| <p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p> | |
| </body> | |
| </html> |
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/sh | |
| # Disable systemd-resolved | |
| systemctl disable systemd-resolved.service | |
| systemctl stop systemd-resolved.service | |
| # Replace by stock system resolv.conf | |
| ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf | |
| # Install docker |