Install simp_le as a normal user Inside the simp_le directory create a directory certs Inside certs add generate.sh
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
| //Regular Expressions List | |
| //Short Tutorial | |
| \ // the escape character - used to find an instance of a metacharacter like a period, brackets, etc. | |
| . // match any character except newline | |
| x // match any instance of x | |
| ^x // match any character except x | |
| [x] // match any instance of x in the bracketed range - [abxyz] will match any instance of a, b, x, y, or z | |
| | // an OR operator - [x|y] will match an instance of x or y |
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
| Aegir on Debian/jessie x86_64 | |
| VPS unknown / not a virtual machine | |
| CPU 4 | |
| RAM 15997 | |
| XTR _XTRAS_LIST="CSF CHV FTP GIT IMG CSS" | |
| MFX _MODULES_FIX=YES | |
| PFX _PERMISSIONS_FIX=YES | |
| DBS _DB_SERIES=10.0 | |
| DNS _DNS_SETUP_TEST=YES |
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": "Gmail-Dashboard", | |
| "_type": "dashboard", | |
| "_source": { | |
| "title": "Gmail Dashboard", | |
| "hits": 0, | |
| "description": "", | |
| "panelsJSON": "[{\"col\":1,\"id\":\"Top-10-Worst-senders\",\"row\":4,\"size_x\":2,\"size_y\":5,\"type\":\"visualization\"},{\"col\":3,\"id\":\"Emails-Date-Histogram\",\"row\":1,\"size_x\":10,\"size_y\":3,\"type\":\"visualization\"},{\"col\":3,\"id\":\"Top-10-Senders\",\"row\":4,\"size_x\":2,\"size_y\":5,\"type\":\"visualization\"},{\"col\":1,\"id\":\"Total-Messages\",\"row\":1,\"size_x\":2,\"size_y\":3,\"type\":\"visualization\"},{\"col\":10,\"id\":\"Day-Of-Week\",\"row\":4,\"size_x\":3,\"size_y\":5,\"type\":\"visualization\"},{\"id\":\"Hour-Of-Day\",\"type\":\"visualization\",\"size_x\":5,\"size_y\":5,\"col\":5,\"row\":4}]", | |
| "version": 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
| input { | |
| elasticsearch { | |
| hosts => [ "HOSTNAME_HERE" ] | |
| port => "9200" | |
| index => "INDEXNAME_HERE" | |
| size => 1000 | |
| scroll => "5m" | |
| docinfo => true | |
| scan => true | |
| } |
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
| master: | |
| image: elasticsearch:2 | |
| ports: | |
| - "9200:9200" | |
| restart: always | |
| container_name: es_master | |
| es-node: | |
| image: elasticsearch:2 | |
| command: elasticsearch --discovery.zen.ping.unicast.hosts=es_master |
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
| crate: | |
| image: 'crate:latest' | |
| deployment_strategy: high_availability | |
| environment: | |
| - CREATE_HEAP_SIZE=1g | |
| ports: | |
| - '32333:4200' | |
| command: > | |
| crate | |
| -Des.cluster.name=mynewcluster |
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
| { | |
| "require": { | |
| "khr/react-curl": "~2.0", | |
| "sunra/php-simple-html-dom-parser": "~1.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
| javascript:(function(){window.open('http://metrics.tools/metricstools/tools/serpindex/domain/%27+window.location.host.replace(/^www\./,''));})(); |
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 | |
| # Based on documentation from Packet.net | |
| # https://www.packet.net/help/kb/hardware/how-do-i-configure-an-nvme-flash-drive/ | |
| #NVME01N1 Setup | |
| parted -a optimal /dev/nvme0n1 mklabel gpt | |
| parted -a optimal /dev/nvme0n1 mkpart primary ext4 0% 100% | |
| mkfs.ext4 /dev/nvme0n1 |
NewerOlder