diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2011-09-22 23:32:27 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2011-09-22 23:32:27 +0000 |
commit | 59d4409000cd56a36cb9e968014578b695d383c5 (patch) | |
tree | e54ae70682ec64513f41737e40142f9cad2f56cf /usr.sbin/nginx/html | |
parent | e3fda8c936e29fe52d114f2e1c27dce857ea7b26 (diff) |
import of nginx 1.0.6 with a bundled libpcre needed for pcre to work
properly.
this is not yet linked to the build but we would like to work on it
in tree to provide an apache replacement for base
Diffstat (limited to 'usr.sbin/nginx/html')
-rw-r--r-- | usr.sbin/nginx/html/50x.html | 18 | ||||
-rw-r--r-- | usr.sbin/nginx/html/index.html | 8 |
2 files changed, 26 insertions, 0 deletions
diff --git a/usr.sbin/nginx/html/50x.html b/usr.sbin/nginx/html/50x.html new file mode 100644 index 00000000000..836fb2d5aa6 --- /dev/null +++ b/usr.sbin/nginx/html/50x.html @@ -0,0 +1,18 @@ +<html> +<head> +<title>The page is temporarily unavailable</title> +<style> +body { font-family: Tahoma, Verdana, Arial, sans-serif; } +</style> +</head> +<body bgcolor="white" text="black"> +<table width="100%" height="100%"> +<tr> +<td align="center" valign="middle"> +The page you are looking for is temporarily unavailable.<br/> +Please try again later. +</td> +</tr> +</table> +</body> +</html> diff --git a/usr.sbin/nginx/html/index.html b/usr.sbin/nginx/html/index.html new file mode 100644 index 00000000000..1f7927539a2 --- /dev/null +++ b/usr.sbin/nginx/html/index.html @@ -0,0 +1,8 @@ +<html> +<head> +<title>Welcome to nginx!</title> +</head> +<body bgcolor="white" text="black"> +<center><h1>Welcome to nginx!</h1></center> +</body> +</html> |