Betterconsolemc config docs start

This commit is contained in:
Jonas_Jones 2024-09-01 18:43:40 +02:00
parent 1f96b8fde1
commit 6cec6c4d1e
9 changed files with 221 additions and 2 deletions

View file

@ -0,0 +1,45 @@
---
sidebar_position: 5
---
# Example Files
## index.html
```html title="index.html"
<html>
<head>
<title>My Server</title>
</head>
<body>
<h1>Welcome to my server</h1>
</body>
</html>
```
## 404.html
```html title="404.html"
<html>
<head>
<title>404 Not Found</title>
</head>
<body>
<h1>404 Not Found</h1>
</body>
</html>
```
## not_supported.html
```html title="not_supported.html"
<html>
<head>
<title>Not Supported</title>
</head>
<body>
<h1>Not Supported</h1>
</body>
</html>
```
## favicon.ico/.png
Add a website icon named `favicon` to the root webserver directory.