-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(buildResponse): remove http:// from requestTarget
- Loading branch information
Showing
5 changed files
with
54 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Welcome to Our Web Service</title> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<h1>Welcome to Our Web Service</h1> | ||
</div> | ||
</header> | ||
<nav> | ||
<div class="container"> | ||
<a href="/development_site/cgi-bin/hello_py.cgi">Development Site</a> | ||
<a href="/perl_site/index.html">Perl Site</a> | ||
<a href="/php_site/index.html">PHP Site</a> | ||
<a href="/www.python_site.com/index.html">Python Site</a> | ||
</div> | ||
</nav> | ||
<div class="container"> | ||
<article> | ||
<h2>About This Server</h2> | ||
<p>Welcome to our multi-faceted web server. Here, you can find a variety of web applications and sites ranging from development tools to language-specific sites. Whether you're here to explore our Perl, PHP, or Python projects, or to delve into our development tools, there's something for everyone.</p> | ||
<p>Please use the navigation above to explore our sites.</p> | ||
</article> | ||
</div> | ||
<form action="http://localhost:8080/" method="post" enctype="multipart/form-data"> | ||
<label for="file">Choose a file:</label> | ||
<input type="file" id="file" name="file"> | ||
<br> | ||
<input type="submit" value="Upload"> | ||
</form> | ||
<h2>Upload Multiple Files</h2> | ||
<form action="upload.php" method="post" enctype="multipart/form-data"> | ||
<input type="file" name="files[]" multiple> | ||
<br> | ||
<input type="submit" value="Upload Files"> | ||
</form> | ||
</body> | ||
</html> |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters