Cloud-Infastructure

This page will give an overview and some use cases of Cloud Infastructure

Jonah Faas 2/17/2025

Cloud Infastructure

Links

Overview

Cloud infastructure is scalable computing in the cloud that gets around the startup and maintenence costs for hosting your own server on site.

Using cloud infastructure you can host websites run apps and even do heavy conputing without having to have the inital investment of hardware.

Use Cases

Package Install

sudo yum/dnf install (package)

Package Start

sudo systemctl start (package)

Bucket Policy Permissions (make sure to change your bucket name to your actual bucket name)

{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": "*", "Action": [ "s3:GetObject" ], "Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*" } ] }