-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (72 loc) · 2.05 KB
/
index.html
File metadata and controls
87 lines (72 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title>NessTechDev</title>
<link rel="stylesheet" href="style.css">
<!-- Anime.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<!-- Particles -->
<script src="https://cdn.jsdelivr.net/npm/tsparticles@2/tsparticles.bundle.min.js"></script>
</head>
<body>
<div id="particles-js"></div>
<div class="container">
<!-- TITLE -->
<h1 id="title">NessTechDev Project Blog</h1>
<p class="subtitle">Cloud | DevOps | AWS | Docker</p>
<!-- PROFILE -->
<div class="hero">
<img src="images/pfp_black.png" alt="Profile" class="pfp">
</div>
<!-- CONNECT -->
<div class="card">
<h2>Connect</h2>
<div class="links">
<a href="https://github.com/NessTechDev" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/goodness-ejionye-86315b248" target="_blank">LinkedIn</a>
<a href="https://x.com/nesstechdev" target="_blank">Twitter</a>
</div>
</div>
<!-- PROJECT OVERVIEW -->
<div class="card highlight">
<h2>Project Overview</h2>
<p>
Deployed a scalable web application on AWS EC2, transitioning from Apache to a Docker-based containerized environment.
Implemented infrastructure configuration, debugging, and frontend enhancements.
</p>
</div>
<!-- STEPS -->
<div class="card">
<h2>Steps Taken</h2>
<ul>
<li>Launched EC2 instance</li>
<li>Configured Security Groups</li>
<li>Connected via SSH</li>
<li>Installed Apache</li>
<li>Deployed website</li>
<li>Containerized with Docker</li>
</ul>
</div>
<!-- WHAT I LEARNED -->
<div class="card">
<h2>What I Learned</h2>
<p>
Learned how to containerize applications using Docker, build images, and run containers.
Debugged real-world issues like port conflicts and permission errors while improving UI/UX.
</p>
</div>
<!-- NEXT STEPS -->
<div class="card">
<h2>Next Steps</h2>
<ul>
<li>Break into Day-based pages</li>
<li>Add navigation system</li>
<li>Implement CI/CD pipeline</li>
<li>Deploy with domain name</li>
<li>Enhance UI/UX</li>
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>