Skip to content

Instantly share code, notes, and snippets.

@bisubus
bisubus / install-docker.sh
Last active June 24, 2020 08:20
Installation script for docker and docker-compose, Debian and Ubuntu
#!/bin/sh
confirm () {
read -r -p "${1:-Are you sure? [y/N]} " response
case $response in
[yY][eE][sS]|[yY])
# true
echo 1;
;;
*)
@bisubus
bisubus / .htaccess
Last active November 4, 2016 06:40
Yii 2 Advanced Application Template on virtual hosting
Options -Indexes
<IfModule !mod_rewrite.c>
Deny from all
</IfModule>
<IfModule mod_rewrite.c>