Skip to content

Commit 59ccca5

Browse files
committed
Initial commit
1 parent a6a42c9 commit 59ccca5

File tree

1 file changed

+41
-33
lines changed

1 file changed

+41
-33
lines changed

public-html/index.html

Lines changed: 41 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -3,41 +3,49 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Test Page</title>
7-
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
6+
<title>Secure Apache with SSL in Docker</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
background-color: #1a1a1a;
11+
color: #fff;
12+
padding: 20px;
13+
margin: 0;
14+
}
15+
.container {
16+
max-width: 800px;
17+
margin: auto;
18+
text-align: center;
19+
}
20+
h1 {
21+
font-size: 36px;
22+
margin-bottom: 20px;
23+
}
24+
p {
25+
font-size: 18px;
26+
line-height: 1.6;
27+
margin-bottom: 20px;
28+
}
29+
a {
30+
color: #fff;
31+
text-decoration: none;
32+
border-bottom: 1px dashed #fff;
33+
transition: border-bottom-color 0.3s ease-in-out;
34+
}
35+
a:hover {
36+
border-bottom-color: transparent;
37+
}
38+
</style>
839
</head>
9-
<body class="bg-gray-100 font-sans leading-normal tracking-normal">
10-
<nav class="bg-gray-800 p-4">
11-
<div class="container mx-auto flex items-center">
12-
<div class="text-white mr-6">
13-
<a class="text-white no-underline hover:text-gray-300 hover:text-underline" href="#">My Test Site</a>
14-
</div>
15-
<div class="flex flex-grow">
16-
<a class="text-gray-300 hover:bg-gray-700 px-3 py-2 rounded" href="#">Home</a>
17-
<a class="text-gray-300 hover:bg-gray-700 px-3 py-2 rounded" href="#">About</a>
18-
<a class="text-gray-300 hover:bg-gray-700 px-3 py-2 rounded" href="#">Contact</a>
19-
</div>
20-
</div>
21-
</nav>
40+
<body>
2241

23-
<header class="bg-white shadow">
24-
<div class="container mx-auto p-12 text-center">
25-
<h1 class="text-4xl font-bold text-gray-800">Welcome to Your Apache Server</h1>
26-
<p class="text-gray-600">This is a test page running on Apache with SSL inside Docker.</p>
27-
</div>
28-
</header>
42+
<div class="container">
43+
<h1>Secure Apache with SSL in Docker</h1>
44+
<p>Set up an Apache server with PHP support inside a Docker container, secured with an SSL certificate for local development purposes.</p>
45+
<p>For detailed instructions please visit the GitHub repository:</p>
46+
<p><a href="https://github.com/tshenolo/docker-Secure-Apache" target="_blank">Secure Apache with SSL in Docker</a></p>
47+
</div>
2948

30-
<main class="py-6 bg-white">
31-
<div class="container mx-auto px-4">
32-
<h2 class="text-2xl font-bold text-gray-800">About This Setup</h2>
33-
<p class="text-gray-600 mt-2">This environment is configured with Apache, SSL, and Docker to emulate a secure production server setup.</p>
34-
</div>
35-
</main>
36-
37-
<footer class="bg-gray-800 p-6 mt-10">
38-
<div class="container mx-auto text-center">
39-
<p class="text-white text-sm">Copyright &copy; 2024 All Rights Reserved</p>
40-
</div>
41-
</footer>
4249
</body>
4350
</html>
51+

0 commit comments

Comments
 (0)