I hereby claim:
- I am pdostal on github.
- I am pdostal (https://keybase.io/pdostal) on keybase.
- I have a public key whose fingerprint is CEC9 A9AA B7F6 9CE8 4136 D67A 65BD CDAB 7097 4BA9
To claim this, I am signing this object:
RailsEnv development | |
<Location /rubyapp> | |
PassengerAppRoot /Users/quick/www/rubyapp | |
RackBaseURI /rubyapp | |
Options -MultiViews | |
</Location> |
$ gpg --gen-key | |
# 1) RSA and RSA (default) | |
# RSA keys may be between 1024 and 8192 bits long. | |
# You can set 'default-key $ID' in ~/.gnupg/gpg.conf | |
$ gpg --list-keys | |
$ gpg --list-secret-keys | |
$ gpg --export -a $ID > gpg-pubkey.asc | |
$ gpg --keyserver keys.gnupg.net --send-keys $ID |
gem: --no-document # skip installation of all documentation | |
# Or add these to skip either ri or rdoc documentation | |
# gem: --no-ri | |
# gem: --no-rdoc |
- How-to from CZ.NIC: http://www.nic.cz/page/561/jak-zprovoznit-dnssec/ | |
Detailed DNSSEC HOWTO: http://www.nic.cz/page/576/dnssec-howto/ | |
- How to use zonesigner, rollinit and donuts ... only 3 pages: | |
http://www.howtoforge.com/configuring-dnssec-on-bind9-9.7.3-on-debian-squeeze-ubuntu-11.10-p2 | |
- Use https://dlv.isc.org/ also for verification. | |
- After that you can vizualize it http://dnsviz.net/ . | |
- DNSSEC/TLSA validator for web browsers https://www.dnssec-validator.cz/ . |
sudo gem install jekyll | |
sudo gem install rdiscount # markdown process | |
sudo easy_install Pygments # code snippets |
I hereby claim:
To claim this, I am signing this object:
\documentclass{article} | |
\usepackage{subfiles} | |
\begin{document} | |
\subfile{section_01} | |
\end{document} |
# From: Dctr Watson | |
# How to Update OpenSSH on Mac OS X | |
# http://www.dctrwatson.com/2013/07/how-to-update-openssh-on-mac-os-x/ | |
brew tap homebrew/dupes | |
brew install openssh --with-brewed-openssl --with-keychain-support | |
launchctl stop org.openbsd.ssh-agent | |
launchctl unload -w /System/Library/LaunchAgents/org.openbsd.ssh-agent.plist | |
sudo vi /System/Library/LaunchAgents/org.openbsd.ssh-agent.plist |
<VirtualHost *:444> | |
ServerAdmin [email protected] | |
ServerName pdostal.cz | |
ServerAlias pdostal.cz *.pdostal.cz | |
DocumentRoot /home/pavel/www/pdostal.cz/current/public | |
<Location /home/pavel/www/pdostal.cz/current> | |
PassengerAppRoot /home/pavel/www/pdostal.cz/current | |
RackBaseURI / |