initial version

main 1.0
Mi Klo 2023-07-29 23:11:01 +00:00
rodzic e7e4efbbd8
commit dcedb3ed07
4 zmienionych plików z 65 dodań i 0 usunięć

4
Dockerfile 100644
Wyświetl plik

@ -0,0 +1,4 @@
FROM caddy:2.6-alpine
COPY config/Caddyfile /etc/caddy/Caddyfile
COPY static /srv

22
config/Caddyfile 100644
Wyświetl plik

@ -0,0 +1,22 @@
# The Caddyfile is an easy way to configure your Caddy web server.
#
# Unless the file starts with a global options block, the first
# uncommented line is always the address of your site.
#
# To use your own domain name (with automatic HTTPS), first make
# sure your domain's A/AAAA DNS records are properly pointed to
# this machine's public IP, then replace ":80" below with your
# domain name.
:80 {
# Set this path to your site's directory.
root * /srv
# Enable the static file server.
file_server
handle_errors {
rewrite * /index.html
file_server
}
}

39
static/index.html 100644
Wyświetl plik

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
.row::after {
content: "";
clear: both;
display: table;
}
body {
background-color: #ffffff;
}
.logo {
width: 90vw;
height: 80vh;
background: url("/index.png") no-repeat;
background-size: contain;
display: block;
}
</style>
</head>
<body>
<div class="test">
<div class="logo"></div>
</div>
</body>
</html>

BIN
static/index.png 100644

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 49 KiB