-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathdeploy.html
More file actions
325 lines (311 loc) · 12.6 KB
/
deploy.html
File metadata and controls
325 lines (311 loc) · 12.6 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<html>
<head>
<title>Pro Deploy</title>
<meta name="slug" content="deploy" />
<meta name="template" content="page-modal" />
</head>
<body>
{% from 'contact.inc' import contact_button %}
<section class="section pt-0 has-text-centered">
<div class="container is-max-widescreen">
<h1 class="title is-spaced is-size-3-mobile">
Deploy Like a <span class="has-text-primary">Pro</span>
</h1>
<p class="subtitle is-size-5">
Our <strong>cloud-ready OpenWISP images</strong> deliver the same
high-tier performance as our enterprise on-premise deployments,
offering a professional-grade installation at a fraction of the cost,
all backed by our basic helpdesk support.
</p>
<div
class="fixed-grid has-2-cols-desktop
has-2-cols-tablet has-1-cols-mobile has-text-centered"
>
<div class="grid text bordered">
<div class="cell">
<h2 class="title is-size-5 mb-3">Amazon Web Services</h2>
<p class="button-container">
<a
class="open-modal button with-text is-orange is-inverted"
href="#aws"
>
<span class="fas fa-brands fa-aws"></span>
<span>Deploy on AWS</span>
</a>
</p>
<div class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">
Deploy on Amazon Web Services
</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Our Cloud-Ready Professional Images are currently in final
staging and will be available shortly.
</p>
<p>
<strong>Get in touch with our team</strong> to receive
early access or a technical overview.
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
{{
contact_button(
text="Contact Us"
)
}}
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2 class="title is-size-5 mb-3">Microsoft Azure</h2>
<p class="button-container">
<a
class="open-modal button with-text is-orange is-inverted"
href="#azure"
>
<span class="fas fa-brands fa-microsoft"></span>
<span>Deploy on Azure</span>
</a>
</p>
<div class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Deploy on Microsoft Azure</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Our Cloud-Ready Professional Images are currently in final
staging and will be available shortly.
</p>
<p>
<strong>Get in touch with our team</strong> to receive
early access or a technical overview.
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
{{
contact_button(
text="Contact Us"
)
}}
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2 class="title is-size-5 mb-3">Google Cloud</h2>
<p class="button-container">
<a
class="open-modal button with-text is-orange is-inverted"
href="#google-cloud"
>
<span class="fas fa-brands fa-google"></span>
<span>Deploy on Google Cloud</span>
</a>
</p>
<div class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Deploy on Google Cloud</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Our Cloud-Ready Professional Images are currently in final
staging and will be available shortly.
</p>
<p>
<strong>Get in touch with our team</strong> to receive
early access or a technical overview.
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
{{
contact_button(
text="Contact Us"
)
}}
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2 class="title is-size-5 mb-3">DigitalOcean</h2>
<p class="button-container">
<a
class="open-modal button with-text is-orange is-inverted"
href="#digitalocean"
>
<span class="fas fa-brands fa-digital-ocean"></span>
<span>Deploy on DigitalOcean</span>
</a>
</p>
<div class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Deploy on DigitalOcean</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Our Cloud-Ready Professional Images are currently in final
staging and will be available shortly.
</p>
<p>
<strong>Get in touch with our team</strong> to receive
early access or a technical overview.
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
{{
contact_button(
text="Contact Us"
)
}}
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
</div>
</div>
<section
class="fixed-grid has-1-cols-mobile has-2-cols-tablet has-3-cols-desktop pt-4 pb-4"
>
<h2 class="title is-size-3 is-size-4-mobile is-spaced">
Pro <span class="has-text-primary">Benefits</span>
</h2>
<p class="subtitle is-size-5">
Thousands of hours of experience, replicated in minutes.
</p>
<div class="features grid has-text-centered">
<div class="cell">
<h2 class="title is-size-5">
<mark class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-gauge-high"></i>
</span>
</mark>
<span>Performance Tuning</span>
</h2>
<p>
Pre-optimized at the kernel and application levels to ensure
high-speed processing and stability under load.
</p>
</div>
<div class="cell">
<h2 class="title is-size-5">
<mark class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-solid fa-network-wired"></i>
</span>
</mark>
<span>Management VPN Ready</span>
</h2>
<p>
Gain immediate, encrypted remote access to your devices without
the complexity of manual tunneling or routing setup.
</p>
</div>
<div class="cell">
<h2 class="title is-size-5">
<mark class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-solid fa-shield-halved"></i>
</span>
</mark>
<span>Hardened Security</span>
</h2>
<p>
Built with secure-by-default configurations and automated SSL
certificate management to keep your infrastructure protected
from day one.
</p>
</div>
<div class="cell">
<h2 class="title is-size-5">
<mark class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-solid fa-cloud-arrow-up"></i>
</span>
</mark>
<span>Easy Upgrades & Migrations</span>
</h2>
<p>
Benefit from a well-documented, command-based upgrade process.
Moreover, with user data isolated on a dedicated partition,
migrations are as effortless as a simple copy-and-paste to a new
instance.
</p>
</div>
<div class="cell">
<h2 class="title is-size-5">
<mark class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-solid fa-wifi"></i>
</span>
</mark>
<span>Turnkey Hotspot Solution</span>
</h2>
<p>
Deploy a production-ready hotspot service in minutes. Our images
include a pre-configured captive portal and a guided setup for
essential features like user self-registration and SMS
verification, with native RadSec support included.
</p>
</div>
<div class="cell">
<h2 class="title is-size-5">
<mark class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-solid fa-key"></i>
</span>
</mark>
<span>Simplified Single Sign-On Setup</span>
</h2>
<p>
Secure your admin interface with professional identity
management. Our images include a guided workflow to connect
Active Directory or Google Sign-In, delivering a seamless,
secure login experience for your entire organization.
</p>
</div>
</div>
</section>
</div>
</section>
</body>
</html>