Skip to content

Instantly share code, notes, and snippets.

@deepaksp
deepaksp / spinx.sh
Last active September 6, 2022 19:10
#!/bin/bash
ARG=$1
if [ "$ARG" = "-i" ] || [ "$ARG" = "-a" ]; then
echo 'Website Name ? (example.com)'
read site
echo 'Website Script Directory ? (/var/www/example)'
read site_dir
@deepaksp
deepaksp / setup-server.sh
Last active January 8, 2019 04:36
Script to Install Php7.x-Fpm Nginx Mysql Webmin and Supervisor Automatically (No Interaction)
#!/bin/bash
site="example"
site_name="example.com"
site_dir="/var/www/example/public"
mysql_pass="test123"
webmin_pass="test321"
php_ver="php7.3"
install_base=true