mirror of
https://github.com/JonasunderscoreJones/docs.jonasjones.dev.git
synced 2025-10-23 02:59:18 +02:00
Betterconsolemc config docs start
This commit is contained in:
parent
1f96b8fde1
commit
6cec6c4d1e
9 changed files with 221 additions and 2 deletions
45
docs/mcwebserver/examplefiles.mdx
Normal file
45
docs/mcwebserver/examplefiles.mdx
Normal 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.
|
Loading…
Add table
Add a link
Reference in a new issue