Skip to content

Instantly share code, notes, and snippets.

View Qussayyon's full-sized avatar

Qussayyon Qussayyon

  • ShaamTech.my
  • Earth
View GitHub Profile
@nginx-gists
nginx-gists / ubuntu_install.sh
Last active May 4, 2024 19:32
Automating Installation of WordPress with NGINX Unit on Ubuntu
#!/usr/bin/env bash
if [ "$EUID" -ne 0 ];then
>&2 echo "This script requires root level access to run"
exit 1
fi
if [ -z "${WORDPRESS_DB_PASSWORD}" ]; then
>&2 echo "WORDPRESS_DB_PASSWORD must be set"
>&2 echo "Here is a random one that you can paste:"
<?php
class Collection implements IteratorAggregate
{
/**
* The collection contents.
*
* @var array
*/
protected $items;