1
0
Fork 0
mirror of https://github.com/kou029w/fogtype.com synced 2025-01-18 08:05:02 +00:00

feat file_server

This commit is contained in:
Nebel 2021-07-18 20:38:29 +09:00
parent d4edffe617
commit bff90b190a
4 changed files with 23 additions and 1 deletions

View file

@ -8,6 +8,7 @@ services:
- "443:443"
volumes:
- ./etc/caddy:/etc/caddy
- ./srv:/srv
- caddy_data:/data
- caddy_config:/config
- minicharge_tmp:/tmp/minicharge

View file

@ -1,5 +1,5 @@
keiu.net {
respond "WIP"
file_server
}
www.keiu.net {
redir https://keiu.net{uri} 308

BIN
srv/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

21
srv/index.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="ja" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>ほんの少し降る雨</title>
<style>
body {
margin: 40px auto;
max-inline-size: 1200px;
}
a.twitter-timeline {
color: #2b7bb9;
}
</style>
</head>
<body>
<a class="twitter-timeline" href="https://twitter.com/kou029w">@kou029w</a>
<script async src="https://platform.twitter.com/widgets.js"></script>
</body>
</html>