diff options
Diffstat (limited to 'gentoo-webroot-default')
-rw-r--r-- | gentoo-webroot-default/AUTHORS | 1 | ||||
-rw-r--r-- | gentoo-webroot-default/README | 18 | ||||
-rw-r--r-- | gentoo-webroot-default/TODO | 6 | ||||
-rw-r--r-- | gentoo-webroot-default/webroot/htdocs/gentoo-logo.png | bin | 0 -> 11115 bytes | |||
-rw-r--r-- | gentoo-webroot-default/webroot/htdocs/index.html | 60 |
5 files changed, 85 insertions, 0 deletions
diff --git a/gentoo-webroot-default/AUTHORS b/gentoo-webroot-default/AUTHORS new file mode 100644 index 0000000..f5e5132 --- /dev/null +++ b/gentoo-webroot-default/AUTHORS @@ -0,0 +1 @@ +Christian Parpart <trapni@gentoo.org> diff --git a/gentoo-webroot-default/README b/gentoo-webroot-default/README new file mode 100644 index 0000000..dc68fd1 --- /dev/null +++ b/gentoo-webroot-default/README @@ -0,0 +1,18 @@ +gentoo-webroot-default +====================== + + +The goal of this package, is, to provide a default virtual host +content to be served by default gentoo web server configurations. + + +This package shall provide: +- generic document content (htdocs/) +- a (gentoo specific) icon set (icons/) +- a (gentoo specific?) error document set (error/) +- ... something utopic missing? ... + + + +-- +vim:ai:et:ts=2:nowrap diff --git a/gentoo-webroot-default/TODO b/gentoo-webroot-default/TODO new file mode 100644 index 0000000..3d6be76 --- /dev/null +++ b/gentoo-webroot-default/TODO @@ -0,0 +1,6 @@ +* add error pages + (maybe create own - gentoo dedicated - error page set) +* make the index.html page a bit nicer? +* if more pages are to come, split inline css it's own file, style.css. +* put gentoo specific icons into icons/ dir. + (maybe create own - gentoo dedicated - icon set) diff --git a/gentoo-webroot-default/webroot/htdocs/gentoo-logo.png b/gentoo-webroot-default/webroot/htdocs/gentoo-logo.png Binary files differnew file mode 100644 index 0000000..e51fc51 --- /dev/null +++ b/gentoo-webroot-default/webroot/htdocs/gentoo-logo.png diff --git a/gentoo-webroot-default/webroot/htdocs/index.html b/gentoo-webroot-default/webroot/htdocs/index.html new file mode 100644 index 0000000..a006da6 --- /dev/null +++ b/gentoo-webroot-default/webroot/htdocs/index.html @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="iso-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C/DTD XHTML 1.0 Transitional//EN" ""> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head> + <title>Gentoo Linux Box</title> + <style> + html, body { + color: black; + background-color: white; + font-family: monospace; + } + div.header { + text-align: center; + } + div.header img { + border: 0px; + } + a:link { + color: #663399; + background-color: transparent; + text-decoration: none; + } + a:visited { + color: #663399; + background-color: transparent; + text-decoration: none; + } + a:hover { + color: #77FF77; + background-color: #663399; + text-decoration: underline; + } + div.header div.sub { + font-weight: bold; + margin-bottom: 2em; + } + div.para { + margin-bottom: 1em; + text-align: center; + } + </style> + </head> + <body> + <div class='header'> + <img src='gentoo-logo.png'/> + <div class='sub'> + This is a <a href='http://www.gentoo.org/'>Gentoo Linux</a> Web Server. + </div> + </div> + <div class='para'> + Hello, I'm the web server of a box running Gentoo Linux.<br/> + It may be, that you may have expected a totally different site. <br/> + If so, I do really apologize.<br/> + It's just - how do I say - I am used to serve this site to you.<br/> + I'm so sorry. You see, I'm just a web server... + </div> + <hr/> + </body> +</html> |