As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
source.sh | |
Ce gist confirme l'identité reliée se trouvant dans ma clef OpenPGP et le relie à ce compte GitHub. | |
Jeton pour preuve : | |
[Verifying my OpenPGP key: openpgp4fpr:cc7bad98b438dbd71c46686ab27ce50082956de7] |
development: | |
adapter: mysql2 | |
encoding: utf8 | |
database: my_database | |
username: root | |
password: |
#Openssl | |
## Génération du certificat client | |
openssl req -new -config openssl.cnf -days 365 -out admin_csr.pem -keyout admin_key.pem -nodes | |
openssl ca -config openssl.cnf -days 365 -in admin_csr.pem -out admin_crt.pem -batch | |
## Conversion en p12 | |
openssl pkcs12 -export -out admin.beudi.nohost.me.p12 -inkey admin_key.pem -in admin_crt.pem -certfile ca.pem |
#!/bin/bash | |
# | |
# template script for generating CentOS container for LXC | |
# | |
# | |
# lxc: linux Container library | |
# Authors: |