-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
150 lines (130 loc) · 7.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Vulture</title>
<link rel="stylesheet" href="https://www.vultureproject.org/css/bootstrap.min.css">
<link rel="stylesheet" href="https://www.vultureproject.org/css/font-awesome.min.css">
<link rel="stylesheet" href="https://www.vultureproject.org/css/highlight.dark.css">
<link rel="stylesheet" href="https://www.vultureproject.org/css/main.css">
</head>
<body class="">
<header class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="https://www.vultureproject.org/" class="navbar-brand"><img src="https://www.vultureproject.org/doc/img/logo.png" alt=""></a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div>
<ul class="nav navbar-nav navbar-right">
<h1>Vulture 3.0 Documentation</h1>
</ul>
</div>
</div>
</header>
<main class="container-fluid">
<div class="row">
<nav id="sidebar" class="col-sm-3 col-lg-2" role="navigation">
<ul class="nav nav-pills nav-stacked">
<li class="active">
<a href="https://www.vultureproject.org/">
<i class='fa fa-home'> </i>Vulture
</a>
</li>
<ul class="submenu nav nav-stacked nav-pills">
</ul>
<li class="">
<a href="https://www.vultureproject.org/doc/getting-started.html">
<i class='fa fa-star'> </i>Getting Started
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/install/steps.html">
<i class='fa fa-download'> </i>Installation
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/reporting/map.html">
<i class='fa fa-bar-chart'> </i>Reporting
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/management/nodes.html">
<i class='fa fa-desktop'> </i>Management
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/repositories/repo.html">
<i class='fa fa-database'> </i>Repositories
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/network/network.html">
<i class='fa fa-globe'> </i>Network
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/configuration/profile.html">
<i class='fa fa-gear'> </i>Configuration
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/waf/waf.html">
<i class='fa fa-cloud'> </i>Web firewall
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/app/app.html">
<i class='fa fa-cubes'> </i>Applications
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/app/template.html">
<i class='fa fa-file-code-o'> </i>Portal Templates
</a>
</li>
<li class="">
<a href="https://www.vultureproject.org/doc/troubleshooting/troubleshooting.html">
<i class='fa fa-wrench'> </i>Troubleshooting
</a>
</li>
</ul>
</nav>
<section id="content" class="col-sm-offset-3 col-lg-offset-2 col-sm-9 col-lg-10">
<h1>Vulture</h1>
<p>Welcome on the <a href="https://www.vultureproject.org">Vulture 3</a> documentation !</p>
<p><img src="/doc/img/screenshot.png" alt="" /></p>
<h2 id="overview">Overview</h2>
<p>Vulture is an Open Source HTTP <code>reverse-proxy</code>. It ensures the security of web applications facing the internet. <br/>
Vulture is ready for HTTP/2 and IPv6.</p>
<p>Basic Vulture's features are:</p>
<ul>
<li>Network firewall based on FreeBSD <code>pf</code></li>
<li>Network TCP balancing based on <code>ha-proxy</code></li>
<li>HTTP Proxy balancer based on <code>Apache</code></li>
<li>User Authentication against LDAP/AD, Kerberos, SQL, Radius, ...</li>
<li>Web application firewall based on <code>ModSecurity</code> and <code>custom algorithms</code></li>
<li>TLS endpoint, Content rewriting, and many other cool things...</li>
</ul>
<p>Vulture is build on top of FreeBSD, Apache, Redis and MongoDB. <br/>
It is horizontaly scalable by-design (Vulture Cluster) and is manageable though a unique Web GUI.</p>
</section>
</div>
</main>
<script src="https://www.vultureproject.org/js/jquery-1.11.0.min.js"></script>
<script src="https://www.vultureproject.org/js/bootstrap.min.js"></script>
<script src="https://www.vultureproject.org/js/highlight.min.js"></script>
<script>
$(function() {
$("section>h1").wrap('<div class="page-header" />');
// Syntax highlighting
hljs.initHighlightingOnLoad();
});
</script>
</body>
</html>