use jfqd/mi-qutic.base to create a provisionable image
image with nextcloud, apache-24 or nginx and php80.
cd /opt/mibe/
git clone https://github.com/jfqd/mi-qutic-nextcloud.git
BASE64_IMAGE_UUID=$(imgadm list | grep qutic-base-64 | tail -1 | awk '{ print $1 }')
TEMPLATE_ZONE_UUID=$(vmadm lookup alias='qutic-base-template-zone')
../bin/build_smartos $BASE64_IMAGE_UUID $TEMPLATE_ZONE_UUID mi-qutic-nextcloud
curl -v -u your-secure-admin-token: https://dsapid.example.com/api/upload /
-F manifest=@/opt/mibe/images/qutic-nextcloud-17.3.0-dsapi.dsmanifest /
-F file=@/opt/mibe/images/qutic-nextcloud-17.3.0.zfs.gz
See mi-qutic-base Readme for a list of usable metadata.
The following sample can be used to create a zone running a copy of the the nextcloud image.
IMAGE_UUID=$(imgadm list | grep 'qutic-nextcloud' | tail -1 | awk '{ print $1 }')
vmadm create << EOF
{
"brand": "joyent",
"image_uuid": "$IMAGE_UUID",
"alias": "nextcloud",
"hostname": "nc11.example.com",
"dns_domain": "example.com",
"resolvers": [
"80.80.80.80",
"80.80.81.81"
],
"nics": [
{
"interface": "net0",
"nic_tag": "admin",
"ip": "10.10.10.10",
"gateway": "10.10.10.1",
"netmask": "255.255.255.0"
}
],
"max_physical_memory": 1024,
"max_swap": 1024,
"quota": 10,
"cpu_cap": 100,
"customer_metadata": {
"admin_authorized_keys": "your-long-key",
"root_authorized_keys": "your-long-key",
"mail_smarthost": "mail.example.com",
"mail_auth_user": "you@example.com",
"mail_auth_pass": "smtp-account-password",
"mail_adminaddr": "report@example.com",
"vfstab": "storage.example.com:/export/data - /data nfs - yes rw,bg,intr",
"server_name": "nextcloud.example.com",
"server_alias": "nc.example.com",
"data_path": "/data/shared/data",
"config_copy_path": "/data/shared/config"
}
}
EOF
- Truncate Apache log
- Add ssl-support