summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stewart <vericgar@gentoo.org>2005-01-08 03:58:41 +0000
committerMichael Stewart <vericgar@gentoo.org>2005-01-08 03:58:41 +0000
commitf5c83f84abcab85c320ab39f1a4306fe6aeadfea (patch)
tree5050aa84b8bb1ec0f53e9dd499f06e88037d2166 /gentoo-webroot-default
downloadapache-f5c83f84abcab85c320ab39f1a4306fe6aeadfea.tar.gz
apache-f5c83f84abcab85c320ab39f1a4306fe6aeadfea.tar.bz2
apache-f5c83f84abcab85c320ab39f1a4306fe6aeadfea.zip
Import from apache herd's SVN overlay
Diffstat (limited to 'gentoo-webroot-default')
-rw-r--r--gentoo-webroot-default/AUTHORS1
-rw-r--r--gentoo-webroot-default/README18
-rw-r--r--gentoo-webroot-default/TODO6
-rw-r--r--gentoo-webroot-default/webroot/htdocs/gentoo-logo.pngbin0 -> 11115 bytes
-rw-r--r--gentoo-webroot-default/webroot/htdocs/index.html60
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
new file mode 100644
index 0000000..e51fc51
--- /dev/null
+++ b/gentoo-webroot-default/webroot/htdocs/gentoo-logo.png
Binary files differ
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>