mirror of
https://github.com/mat-1/matdoesdev.git
synced 2025-08-02 23:44:39 +00:00
more web servers
This commit is contained in:
parent
34c9ea6e46
commit
f20e515171
10 changed files with 451 additions and 4 deletions
BIN
static/iisstart.png
Normal file
BIN
static/iisstart.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 97 KiB |
|
@ -0,0 +1 @@
|
|||
🐟
|
|
@ -0,0 +1 @@
|
|||
i don't have any more sorry
|
|
@ -0,0 +1,67 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4//EN">
|
||||
|
||||
<!-- (C) COPYRIGHT International Business Machines Corporation 1999, 2012 -->
|
||||
<!-- All Rights Reserved -->
|
||||
<!-- Licensed Materials - Property of IBM -->
|
||||
|
||||
<!-- -->
|
||||
<!-- US Government Users Restricted Rights - Use, duplication or -->
|
||||
<!-- disclosure restricted by GSA ADP Schedule Contract with IBM Corp.-->
|
||||
<!-- -->
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
|
||||
<title>IBM HTTP Server</title>
|
||||
|
||||
<script language="JavaScript">
|
||||
document.write('<link rel="stylesheet" href="http_server_styles.css">')
|
||||
</script>
|
||||
|
||||
<link rel="shortcut icon" href="./images/ihs/favicon.ico" type="image/vnd.microsft.icon" />
|
||||
</head>
|
||||
|
||||
<body width="778" height="556" background="images/ihs/background.gif" resize="no" scroll="no">
|
||||
<tr>
|
||||
<td>
|
||||
<img src="images/ihs/odot.gif" alt="" width="1" height="155" /><br />
|
||||
|
||||
<table class="foreground" align="center" role="presentation">
|
||||
<tr valign="top">
|
||||
<td><img src="images/ihs/odot.gif" alt="" width="1" height="60" /></td>
|
||||
</tr>
|
||||
|
||||
<tr align="left" valign="top" role="navigation">
|
||||
<td><img src="images/ihs/odot.gif" alt="" width="46" height="1" /></td>
|
||||
|
||||
<td align="center">
|
||||
<a href="http://www-01.ibm.com/software/webservers/httpservers/library/">
|
||||
<img src="images/ihs/help.gif" alt="" width="22" height="20" border="0" /><br />
|
||||
Information Center</a
|
||||
>
|
||||
</td>
|
||||
|
||||
<td align="center">
|
||||
<a href="http://www-306.ibm.com/software/webservers/httpservers/support/">
|
||||
<img src="images/ihs/support.gif" alt="" width="19" height="20" border="0" /><br />
|
||||
Support</a
|
||||
>
|
||||
</td>
|
||||
|
||||
<td align="center"></td>
|
||||
|
||||
<td><img src="images/ihs/odot.gif" alt="" width="49" height="1" /></td>
|
||||
</tr>
|
||||
<!--<tr valign="top">
|
||||
<td> </td>
|
||||
<td colspan="7" width="525" class="descriptive_text" valign="top" align="left">Descriptive text area to be used for
|
||||
additional reference information. Two lines maximum. Information here changes as user rolls-over each link above.<br></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
-->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Cherokee Test Page</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<style type="text/css">
|
||||
body {
|
||||
margin: 0;
|
||||
background: #fff url(images/default-bg.png) center center repeat-y;
|
||||
}
|
||||
|
||||
#contents {
|
||||
background: #fff url(images/cherokee-logo.png) top center no-repeat;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
width: 551px;
|
||||
max-width: 551px;
|
||||
border: 1px solid #fff;
|
||||
}
|
||||
|
||||
.message {
|
||||
font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
background-color: #c00;
|
||||
color: #fff;
|
||||
padding: 10px;
|
||||
margin-top: 220px;
|
||||
font-size: 120%;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
code {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.powered {
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="contents">
|
||||
<div class="message">
|
||||
<p>
|
||||
This page is used to test the proper operation of the Cherokee Web Server after it has
|
||||
been installed. If you can read this page, it means that the Cherokee Web Server installed
|
||||
at this site is working properly.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Note:</strong> If you see this page after uploading site content you probably have
|
||||
not replaced the <code>index.html</code> file.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="powered">
|
||||
<a href="http://www.cherokee-project.com"
|
||||
><img src="images/powered_by_cherokee.png" alt="Powered by Cherokee" border="0"
|
||||
/></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,209 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>Welcome to AOLserver</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: verdana, arial;
|
||||
font-size: 10pt;
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
}
|
||||
a:link,
|
||||
a:visited,
|
||||
a:active {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
b {
|
||||
font-style: bold;
|
||||
}
|
||||
h1 {
|
||||
font-family: verdana, arial;
|
||||
font-style: bold;
|
||||
font-size: 14pt;
|
||||
}
|
||||
h2 {
|
||||
font-family: verdana, arial;
|
||||
font-style: bold;
|
||||
font-size: 12pt;
|
||||
}
|
||||
table {
|
||||
border: solid 1px #000000;
|
||||
}
|
||||
td {
|
||||
font-family: verdana, arial;
|
||||
font-size: 10pt;
|
||||
border-right: solid 1px #cccccc;
|
||||
border-bottom: solid 1px #cccccc;
|
||||
}
|
||||
p {
|
||||
font-family: verdana, arial;
|
||||
font-size: 12pt;
|
||||
}
|
||||
#nav {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
#nav ul {
|
||||
background-color: #ececec;
|
||||
text-align: left;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
#nav li {
|
||||
font-family: verdana, arial;
|
||||
font-size: 10pt;
|
||||
list-style-type: none;
|
||||
padding: 0.25em 1em;
|
||||
border-left: 1px solid white;
|
||||
display: inline;
|
||||
}
|
||||
#nav li:first-child {
|
||||
border: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="nav">
|
||||
<ul>
|
||||
<li><a href="http://www.aolserver.com/">AOLserver.com</a></li>
|
||||
<li><a href="http://panoptic.com/wiki/aolserver/">Wiki</a></li>
|
||||
<li><a href="http://panoptic.com/wiki/aolserver/Tcl%20API">Tcl API</a></li>
|
||||
<li><a href="http://aolserver.com/docs/devel/c/api">C API</a></li>
|
||||
<li><a href="http://aolserver.com/lists.php">Mailing Lists</a></li>
|
||||
<li> </li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h1>AOLserver 4.5</h1>
|
||||
|
||||
<p>Congratulations, you have successfully installed AOLserver 4.5!</p>
|
||||
|
||||
<h2>Configuration</h2>
|
||||
|
||||
<table cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td><b>Key</b></td>
|
||||
<td><b>Value</b></td>
|
||||
</tr>
|
||||
|
||||
<tr></tr>
|
||||
|
||||
<tr>
|
||||
<td>Build Date</td>
|
||||
<td>Sep 14 2024 at 03:56:51</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Build Label</td>
|
||||
<td>aolserver4_5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Build Platform</td>
|
||||
<td>linux</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Build Version</td>
|
||||
<td>4.5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Build Patch Level</td>
|
||||
<td>4.5.1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Binary</td>
|
||||
<td>/usr/local/aolserver/bin/nsd</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Process ID</td>
|
||||
<td>28771</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Uptime</td>
|
||||
<td>27</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Host Name</td>
|
||||
<td>user-Standard-PC-Q35-ICH9-2009</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Address</td>
|
||||
<td>127.0.1.1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Server Config</td>
|
||||
<td>/usr/local/aolserver/nsd.tcl</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Server Log</td>
|
||||
<td>/usr/local/aolserver/log/server.log</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Access Log</td>
|
||||
<td>/usr/local/aolserver/servers/server1/modules/nslog/access.log</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tcl Version</td>
|
||||
<td>8.6</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tcl Patch Level</td>
|
||||
<td>8.6.14</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Home Directory</td>
|
||||
<td>/usr/local/aolserver</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Page Root</td>
|
||||
<td>/usr/local/aolserver/servers/server1/pages</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tcl Library</td>
|
||||
<td>/usr/local/aolserver/servers/server1/modules/tcl</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Loaded AOLserver Modules</h2>
|
||||
|
||||
<table cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td><b>Type</b></td>
|
||||
<td><b>Name</b></td>
|
||||
<td><b>Location</b></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>C</td>
|
||||
<td>nssock</td>
|
||||
<td>/usr/local/aolserver/bin/nssock.so</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C</td>
|
||||
<td>nslog</td>
|
||||
<td>/usr/local/aolserver/bin/nslog.so</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C</td>
|
||||
<td>nscp</td>
|
||||
<td>/usr/local/aolserver/bin/nscp.so</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,22 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Welcome to Jetty 9 on Debian</title>
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<meta http-equiv="Cache-Control" content="no-cache,no-store" />
|
||||
</head>
|
||||
<body>
|
||||
<a href="http://jetty.mortbay.org"><img src="jetty_banner.gif" /></a>
|
||||
<h1>Welcome to Jetty 9 on Debian</h1>
|
||||
|
||||
<p align="justify">
|
||||
<b>Jetty</b> is a 100% Java HTTP Server and Servlet Container. This means that you do not need
|
||||
to configure and run a seperate web server (like Apache) in order to use java, servlets and
|
||||
JSPs to generate dynamic content. Jetty is a fully featured web server for static and dynamic
|
||||
content. Unlike separate server/container solutions, this means that your web server and web
|
||||
application run in the same process, without interconnection overheads and complications.
|
||||
Furthermore, as a pure java component, Jetty can be simply included in your application for
|
||||
demonstration, distribution or deployment. Jetty is available on all Java supported platforms.
|
||||
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<title>Apache Tomcat</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>It works !</h1>
|
||||
|
||||
<p>
|
||||
If you're seeing this page via a web browser, it means you've setup Tomcat successfully.
|
||||
Congratulations!
|
||||
</p>
|
||||
|
||||
<p>
|
||||
This is the default Tomcat home page. It can be found on the local filesystem at:
|
||||
<code>/var/lib/tomcat10/webapps/ROOT/index.html</code>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Tomcat veterans might be pleased to learn that this system instance of Tomcat is installed
|
||||
with <code>CATALINA_HOME</code> in <code>/usr/share/tomcat10</code> and
|
||||
<code>CATALINA_BASE</code> in <code>/var/lib/tomcat10</code>, following the rules from
|
||||
<code>/usr/share/doc/tomcat10-common/RUNNING.txt.gz</code>.
|
||||
</p>
|
||||
|
||||
<p>You might consider installing the following packages, if you haven't already done so:</p>
|
||||
|
||||
<p>
|
||||
<b>tomcat10-docs</b>: This package installs a web application that allows to browse the Tomcat
|
||||
10 documentation locally. Once installed, you can access it by clicking
|
||||
<a href="docs/">here</a>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<b>tomcat10-examples</b>: This package installs a web application that allows to access the
|
||||
Tomcat 10 Servlet and JSP examples. Once installed, you can access it by clicking
|
||||
<a href="examples/">here</a>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<b>tomcat10-admin</b>: This package installs two web applications that can help managing this
|
||||
Tomcat instance. Once installed, you can access the
|
||||
<a href="manager/html">manager webapp</a> and the
|
||||
<a href="host-manager/html">host-manager webapp</a>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
NOTE: For security reasons, using the manager webapp is restricted to users with role
|
||||
"manager-gui". The host-manager webapp is restricted to users with role "admin-gui". Users are
|
||||
defined in <code>/etc/tomcat10/tomcat-users.xml</code>.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
|
@ -1 +1,34 @@
|
|||
i don't have any more sorry
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>IIS Windows Server</title>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body {
|
||||
color:#000000;
|
||||
background-color:#0072C6;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
#container {
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
a img {
|
||||
border:none;
|
||||
}
|
||||
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<a href="http://go.microsoft.com/fwlink/?linkid=66138&clcid=0x409"
|
||||
><img src="/iisstart.png" alt="IIS" width="960" height="600"
|
||||
/></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -186,9 +186,6 @@
|
|||
|
||||
color: #dcdfe6;
|
||||
}
|
||||
|
||||
div.validator {
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue