KN07 Draft C

This commit is contained in:
Marcello Calisto 2023-11-05 21:42:23 +01:00
parent b673f7ef18
commit 6f7c4be904

View File

@ -92,8 +92,38 @@ Zuerst muss ein sogenanntes **IAM Instance Profile** erstellt werden. Beim näch
aws s3 cp s3://<Name S3-Bucket>/ami-test.txt /var/www/html/index.html
```
```html
```html
<html>
<head>
<title>KN07 C</title>
<style>
body {
text-align: center;
}
h1 {
margin-top: 50px;
}
section {
background-color: #B0E0E6;
}
strong {
font-weight: bold;
}
</style>
</head>
<body>
<h1>KN07 C Webserver</h1>
<section>
<p>Dieser Webserver läuft auf einem Amazon Linux AMI</p>
</section>
<section>
<p>Daraus wird ein Snapshot und ein Image erstellt, welches anschliessend in einer anderen AZ gestartet werden kann.</p>
<p>Das Image beinhaltet so den Webserver-Code bereits. Das Feld unter "User-data" kann somit <strong>leer</strong> gelassen werden.</p>
<p>Somit dauert es bedeutend weniger lang, bis die Instanz aufgesetzt und verfübgar ist.</p>
</section>
</body>
</html>
```