mirror of
https://github.com/umputun/reproxy.git
synced 2024-11-24 08:12:31 +02:00
91 lines
2.8 KiB
HTML
91 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>reproxy</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta name="description" content="Reproxy is a minimalistic system acting as an edge server / reverse proxy for your infrastructure. It provides the only essential functionality with no bells and whistles. Setup is very straightforward and not much to configure.">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@300&display=swap">
|
|
|
|
<style>
|
|
/* Reset styles for cross browser compatibility */
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
html {
|
|
display: flex;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #333;
|
|
font-family: 'Inconsolata', monospace;
|
|
font-size: 25px;
|
|
text-align: center;
|
|
}
|
|
|
|
article {
|
|
max-width: 650px;
|
|
padding: 15px;
|
|
text-align: left;
|
|
}
|
|
|
|
article > * + * {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 40px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 40px;
|
|
}
|
|
|
|
a {
|
|
color: #dc8100;
|
|
}
|
|
|
|
a:hover {
|
|
color: #333;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<article>
|
|
<h1>Simple Reverse Proxy</h1>
|
|
|
|
<p>Reproxy is a minimalistic system acting as an edge server / reverse proxy for your infrastructure. It provides the only essential functionality with no bells and whistles. Setup is very straightforward and not much to configure.</p>
|
|
|
|
<ul>
|
|
<li>Automatic SSL termination with Lets Encrypt</li>
|
|
<li>Support of user-provided ssl certificates</li>
|
|
<li>Simple but flexible proxy rules</li>
|
|
<li>Static, command line proxy rules provider</li>
|
|
<li>Dynamic, file-based proxy rules provider</li>
|
|
<li>Docker provider with an automatic discovery</li>
|
|
<li>Optional traffic compression</li>
|
|
<li>User-defined limits and timeouts</li>
|
|
<li>Single binary distribution</li>
|
|
<li>Docker container distribution</li>
|
|
<li>Builtin static assets server</li>
|
|
|
|
<li><a href="https://github.com/umputun/reproxy">Open source</a></li>
|
|
</ul>
|
|
|
|
<p>— reproxy team</p>
|
|
</article>
|
|
</body>
|
|
</html> |