LATIHAN NGINX

catur wahyu nugroho

catur wahyu nugroho

Dec 26, 2024

sudo apt update

sudo apt upgrade -y

sudo apt install nginx -y

sudo systemctl status nginx

File utama: /etc/nginx/sites-available/

buat folder : mkdir /var/www/sekolah

buat index : nano index.html

sudo systemctl reload nginx

isi file index.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My School</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #0056b3;
color: white;
padding: 20px 10px;
text-align: center;
}
nav {
text-align: center;
margin: 20px 0;
}
nav a {
text-decoration: none;
color: #0056b3;
margin: 0 15px;
font-weight: bold;
}
nav a:hover {
color: #ff5722;
}
section {
padding: 20px;
text-align: center;
}
footer {
background-color: #0056b3;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Welcome to SMK SAKTI Gemolong</h1>
<p>Your path to a brighter future</p>
</header>
<nav>
<a href="#about">About Us</a>
<a href="#programs">Programs</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Our School</h2>
<p>We are a leading institution committed to providing quality education and shaping the leaders of tomorrow.</p>
</section>
<section id="programs">
<h2>Our Programs</h2>
<ul>
<li>Primary Education</li>
<li>Secondary Education</li>
<li>Extracurricular Activities</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Email: info@myschool.com</p>
<p>Phone: +62 812 3456 7890</p>
</section>
<footer>
<p>&copy; 2024 My School. All rights reserved.</p>
</footer>
</body>
</html>