Skip to content

Instantly share code, notes, and snippets.

View flexscss's full-sized avatar
💭
I may be slow to respond.

Alexey flexscss

💭
I may be slow to respond.
View GitHub Profile
@flexscss
flexscss / gist:b47d889bc8bc0aa7bc6870b27ee798a1
Last active February 7, 2019 13:23
mongodb monit config
// set daemon 5 for fast restart
check process mongodb with pidfile /var/lib/mongodb/mongod.lock
group database
start program = "/bin/systemctl start mongodb"
restart program = "/bin/systemctl restart mongodb"
stop program = "/bin/systemctl stop mongodb"
@flexscss
flexscss / mail.php
Last active January 10, 2018 13:36
Sending json from forms
<?php
$json = file_get_contents('php://input');
$data = json_decode($json, true);
$errors = array();
// Form params variables
$param1 = '';
$param2 = '';