Enter ~ .
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
$this->setExpectedException('Exception'); |
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
atom-sync-settings |
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
composer global require phpunit/phpunit:4.8.27 |
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
$ cd /etc/ssl/certs/ | |
$ sudo openssl dhparam -out dhparam.pem 4096 |
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
# This script should be saved in ubuntu home folder and used in combination with | |
# a cron job running the following command (requires certbot-auto to be present | |
# in ubuntu user home directory) | |
# | |
# /home/ubuntu/certbot-auto renew --standalone --config /home/ubuntu/cli-renew.ini --quiet --pre-hook "service nginx stop" --post-hook "service nginx start" | |
# Use a 4096 bit RSA key instead of 2048 | |
# rsa-key-size = 4096 | |
# Uncomment and update to register with the specified e-mail address |
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
0 15 * * 4 /home/ubuntu/cli-renew.sh > /home/ubuntu/cli-renew.log 2>&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 | |
echo "Running certbot-auto renew script" | |
date | |
echo | |
/home/ubuntu/certbot-auto renew --no-self-upgrade --standalone --pre-hook "service nginx stop" --post-hook "service nginx start" |
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
./certbot-auto --text certonly --standalone -d bitmono.com --email [email protected] |
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
[Unit] | |
Description=i3 lock for suspension | |
[Service] | |
User=dan | |
Type=forking | |
Environment=DISPLAY=:0 | |
ExecStart=/usr/bin/i3lock -p win -d -c 000000 | |
[Install] |