summarylogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorcarlwgeorge2017-05-18 11:23:42 -0500
committercarlwgeorge2017-05-18 11:54:57 -0500
commit97c40162b0e3ffc7f76a942a0a4cc74255224061 (patch)
tree9d734ed7782f77309f7ee830d5a65d4c46ccfa4d /index.html
parent49fb7df51ea7d9869f87ce5473e6ae1bcaa870b9 (diff)
downloadaur-97c40162b0e3ffc7f76a942a0a4cc74255224061.tar.gz
0.10.2-2
* Remove conflicts. It is the responsiblity of alternate packages (-git, -bin, etc.) to conflict with the main package. The main package doesn't need to also conflict with them. * Build from GitHub tarball, not git clone. * Build using `go build` directly, not build.bash. * Run as the existing http user. * Store tls things in /var/lib/caddy (created by a tmpfiles config). * Create CADDYPATH with systemd tmpfiles, not in caddy.install. * Run appropriate systemctl commands in caddy.install. * Enable dns provider extensions. * Include a default example page (index.html and svg image). * Include a default Caddyfile.
Diffstat (limited to 'index.html')
-rw-r--r--index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 000000000000..e11cda6cf81f
--- /dev/null
+++ b/index.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Caddy at your service</title>
+ <style>
+ body {
+ background: #333;
+ }
+ a {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-right: -50%;
+ transform: translate(-50%, -50%);
+ }
+ </style>
+ </head>
+ <body>
+ <a href="https://caddyserver.com/docs">
+ <img src="caddy-at-your-service-white.svg" width="500">
+ </a>
+ </body>
+</html>