Outline of ideas, concepts to cover, potential projects to write.
- Book with a video for each chapter.
| #!/bin/bash | |
| # Info | |
| # --- | |
| # script can run with the domain as a command line input | |
| # `sudo ./nginx_domain.sh my_domain.com` or without and | |
| # the script will prompt the user for input | |
| #config | |
| web_root='/var/www' | |
| config_dir='/etc/nginx' |