diff --git a/ansible-sandbox.html b/ansible-sandbox.html index 1a73277..1b0fd74 100644 --- a/ansible-sandbox.html +++ b/ansible-sandbox.html @@ -708,14 +708,14 @@
- - +
@@ -881,890 +881,6 @@
11 - enable_https: - - - - - Argobox | Ansible Sandbox - - - - - - - - - - - - - - - - - - -
-
-
-
-

Ansible Sandbox

-
- -
- - -
-
- -
-
-
-
-

Web Server Deployment

- Basic -
-

- Deploy a Nginx web server with a sample website in a controlled environment. -

-
-
- - Runtime: ~3 min -
-
- - 1 VM -
-
-
- -
-
-

Docker Compose Stack

- Intermediate -
-

- Deploy a multi-container application using Docker Compose with automatic configuration. -

-
-
- - Runtime: ~5 min -
-
- - 1 VM -
-
-
- -
-
-

K3s Kubernetes Cluster

- Advanced -
-

- Deploy a lightweight Kubernetes cluster with basic services and sample application. -

-
-
- - Runtime: ~8 min -
-
- - 3 VMs -
-
-
- -
-
-

LAMP Stack

- Intermediate -
-

- Deploy a Linux, Apache, MySQL, and PHP stack with a sample application. -

-
-
- - Runtime: ~4 min -
-
- - 1 VM -
-
-
- -
-
-

Security Hardening

- Advanced -
-

- Apply security best practices to a Linux server including firewall, SSH hardening, and more. -

-
-
- - Runtime: ~6 min -
-
- - 1 VM -
-
-
-
- -
-
-
-
- - Web Server Deployment -
-
-
Playbook
-
Configuration
-
Output
-
VM Status
-
-
-
-
-
-
- 1 - --- -
-
- 2 - # Web Server Deployment Playbook -
-
- 3 - # This playbook installs and configures a basic Nginx web server -
-
- 4 - -
-
- 5 - - name: Deploy Web Server -
-
- 6 - hosts: all -
-
- 7 - become: yes -
-
- 8 - vars: -
-
- 9 - web_domain: example.local -
-
- 10 - web_root: /var/www/html -
-
- 11 - enable_https: enable_https: false