Add files via upload

This commit is contained in:
2025-02-08 22:59:48 +01:00
committed by GitHub
parent 0b3303a173
commit 4155b55032
3 changed files with 154 additions and 0 deletions

72
www/index.html Normal file
View File

@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Configuration Guide</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Server Configuration Guide</h1>
<nav>
<ul>
<li><a href="#http">HTTP link</a></li>
<li><a href="#https">HTTPS & SSL</a></li>
<li><a href="#security">Security</a></li>
</ul>
</nav>
</header>
<main>
<section id="http">
<h2>HTTP Configuration</h2>
<p>HTTP (HyperText Transfer Protocol) is the foundation of web communication.</p>
<button class="toggle-btn" href="https://en.wikipedia.org/wiki/HTTP">Read More</button>
<div class="content">
<p>To configure an HTTP server, ensure that your web server (e.g., Apache, Nginx) is set up properly.</p>
<pre><code># Apache example:
<VirtualHost *:80>
ServerName example.com
DocumentRoot /var/www/html
</VirtualHost></code></pre>
</div>
</section>
<section id="https">
<h2>HTTPS & SSL</h2>
<p>HTTPS secures communication by encrypting data using SSL/TLS.</p>
<button class="toggle-btn">Read More</button>
<div class="content">
<p>To enable HTTPS, you need an SSL certificate. Here's an example for Apache:</p>
<pre><code># Apache SSL configuration:
<VirtualHost *:443>
SSLEngine on
SSLCertificateFile /etc/ssl/certs/server.crt
SSLCertificateKeyFile /etc/ssl/private/server.key
</VirtualHost></code></pre>
</div>
</section>
<section id="security">
<h2>Server Security</h2>
<p>Securing your server is crucial to prevent attacks.</p>
<button class="toggle-btn">Read More</button>
<div class="content">
<ul>
<li>Disable unnecessary services.</li>
<li>Use a firewall (iptables, UFW).</li>
<li>Keep software updated.</li>
<li>Enforce strong authentication.</li>
</ul>
</div>
</section>
</main>
<footer>
<p>&copy; 2025 Server Config Guide</p>
</footer>
<script src="script.js"></script>
</body>
</html>

10
www/script.js Normal file
View File

@@ -0,0 +1,10 @@
document.addEventListener("DOMContentLoaded", function () {
const buttons = document.querySelectorAll(".toggle-btn");
buttons.forEach(button => {
button.addEventListener("click", function () {
const content = this.nextElementSibling;
content.style.display = content.style.display === "block" ? "none" : "block";
});
});
});

72
www/style.css Normal file
View File

@@ -0,0 +1,72 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 10px;
}
nav ul li a {
color: white;
text-decoration: none;
}
main {
padding: 20px;
}
section {
background: white;
padding: 15px;
margin: 15px 0;
border-radius: 5px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
button.toggle-btn {
background-color: #007bff;
color: white;
border: none;
padding: 10px;
margin-top: 10px;
cursor: pointer;
}
button.toggle-btn:hover {
background-color: #0056b3;
}
.content {
display: none;
margin-top: 10px;
}
footer {
text-align: center;
background-color: #333;
color: white;
padding: 10px;
position: relative;
bottom: 0;
width: 100%;
}