Skip to content

Instantly share code, notes, and snippets.

View m-adamski's full-sized avatar

Maciej Adamski m-adamski

View GitHub Profile
@m-adamski
m-adamski / mysql-docker.sh
Created September 3, 2021 13:20 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@m-adamski
m-adamski / nginx.conf
Created February 12, 2020 14:11 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048