-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
324 lines (288 loc) · 13.5 KB
/
index.html
File metadata and controls
324 lines (288 loc) · 13.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="LWS - Linux Web Services. AWS-like CLI tool for managing LXC containers on Proxmox VE.">
<meta name="keywords" content="LXC, Proxmox, CLI, Linux, Containers, Cloud, Infrastructure">
<meta name="author" content="Fabrizio Salmi">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://fabriziosalmi.github.io/lws/">
<meta property="og:title" content="LWS - Linux Web Services">
<meta property="og:description" content="AWS-like CLI tool for managing LXC containers on Proxmox VE">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://fabriziosalmi.github.io/lws/">
<meta property="twitter:title" content="LWS - Linux Web Services">
<meta property="twitter:description" content="AWS-like CLI tool for managing LXC containers on Proxmox VE">
<title>LWS - Linux Web Services | Proxmox Container Management</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container">
<div class="nav-brand">
<span class="logo">🐧 LWS</span>
</div>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#quickstart">Quick Start</a>
<a href="#docs">Docs</a>
<a href="https://github.com/fabriziosalmi/lws" target="_blank">GitHub</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1 class="hero-title">
<span class="gradient-text">Linux Web Services</span>
<br>
<span class="subtitle">Unified CLI for Proxmox + LXC + Docker</span>
</h1>
<p class="hero-description">
<strong>One CLI to rule them all:</strong> Manage Proxmox hosts, deploy LXC containers,
and run Docker applications - all from a single unified interface.
<br>
<em>Install anything on your Proxmox infrastructure with simple commands.</em>
</p>
<div class="hero-buttons">
<a href="#quickstart" class="btn btn-primary">Get Started</a>
<a href="pages/getting-started.html" class="btn btn-secondary">Documentation</a>
</div>
<div class="hero-code">
<pre><code><span class="code-comment"># Install and run your first container</span>
<span class="code-command">git clone</span> https://github.com/fabriziosalmi/lws.git
<span class="code-command">cd</span> lws && <span class="code-command">pip install</span> -r requirements.txt
<span class="code-command">lws lxc run</span> --image-id ubuntu-22.04 --size medium --count 3</code></pre>
</div>
</div>
</div>
<div class="hero-background"></div>
</section>
<!-- Unified Platform Section -->
<section class="unified-platform">
<div class="container">
<h2 class="section-title">The Unified Platform</h2>
<p class="section-subtitle">From Bare Metal to Running Applications in 3 Simple Steps</p>
<div class="platform-workflow">
<div class="workflow-step">
<div class="step-icon">🖥️</div>
<h3>1. Proxmox</h3>
<p>Manage your Proxmox hosts</p>
<div class="code-snippet">
<code>lws px list</code>
</div>
</div>
<div class="workflow-arrow">→</div>
<div class="workflow-step">
<div class="step-icon">📦</div>
<h3>2. LXC</h3>
<p>Deploy containers instantly</p>
<div class="code-snippet">
<code>lws lxc run --size medium</code>
</div>
</div>
<div class="workflow-arrow">→</div>
<div class="workflow-step">
<div class="step-icon">🐳</div>
<h3>3. Docker</h3>
<p>Run any application</p>
<div class="code-snippet">
<code>lws app deploy install</code>
</div>
</div>
</div>
<div class="platform-example">
<h3>Complete Example: Deploy WordPress in 60 Seconds</h3>
<pre><code><span class="code-comment"># 1. Create LXC container</span>
<span class="code-command">lws lxc run</span> --image-id ubuntu-22.04 --size lws-web --hostname wordpress-1
<span class="code-comment"># 2. Install Docker in the container</span>
<span class="code-command">lws app setup</span> 100
<span class="code-comment"># 3. Deploy WordPress with Docker Compose</span>
<span class="code-command">lws app deploy install</span> 100 --compose-file wordpress-compose.yml
<span class="code-comment"># Done! Your WordPress is running 🎉</span></code></pre>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="stats">
<div class="container">
<div class="stats-grid">
<div class="stat-item">
<div class="stat-number">3</div>
<div class="stat-label">Platforms Unified</div>
</div>
<div class="stat-item">
<div class="stat-number">50+</div>
<div class="stat-label">CLI Commands</div>
</div>
<div class="stat-item">
<div class="stat-number">100%</div>
<div class="stat-label">Open Source</div>
</div>
<div class="stat-item">
<div class="stat-number">REST</div>
<div class="stat-label">API Included</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="features">
<div class="container">
<h2 class="section-title">Powerful Features</h2>
<p class="section-subtitle">Everything you need to manage your Proxmox infrastructure</p>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3>Lightning Fast</h3>
<p>Optimized command execution with SSH connection pooling and retry logic</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔒</div>
<h3>Secure by Default</h3>
<p>Built-in security groups, firewall rules, and credential masking</p>
</div>
<div class="feature-card">
<div class="feature-icon">🌐</div>
<h3>Multi-Region</h3>
<p>Manage containers across multiple Proxmox hosts and availability zones</p>
</div>
<div class="feature-card">
<div class="feature-icon">📊</div>
<h3>Resource Monitoring</h3>
<p>Real-time CPU, memory, and disk monitoring with scaling recommendations</p>
</div>
<div class="feature-card">
<div class="feature-icon">🐳</div>
<h3>Docker Integration</h3>
<p>Install and manage Docker containers within LXC containers</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔄</div>
<h3>Auto-Scaling</h3>
<p>Intelligent resource scaling based on usage patterns and thresholds</p>
</div>
<div class="feature-card">
<div class="feature-icon">💾</div>
<h3>Backup & Restore</h3>
<p>Snapshot management and full container backup/restore capabilities</p>
</div>
<div class="feature-card">
<div class="feature-icon">🚀</div>
<h3>REST API</h3>
<p>Full-featured REST API with Swagger documentation and Web UI</p>
</div>
</div>
</div>
</section>
<!-- Quick Start Section -->
<section id="quickstart" class="quickstart">
<div class="container">
<h2 class="section-title">Quick Start</h2>
<div class="quickstart-steps">
<div class="step">
<div class="step-number">1</div>
<div class="step-content">
<h3>Install Dependencies</h3>
<pre><code>pip install -r requirements.txt</code></pre>
</div>
</div>
<div class="step">
<div class="step-number">2</div>
<div class="step-content">
<h3>Configure</h3>
<pre><code>cp config.yaml.example config.yaml
# Edit config.yaml with your Proxmox details</code></pre>
</div>
</div>
<div class="step">
<div class="step-number">3</div>
<div class="step-content">
<h3>Run Your First Container</h3>
<pre><code>lws lxc run --image-id ubuntu-22.04 --size medium</code></pre>
</div>
</div>
</div>
</div>
</section>
<!-- Documentation Links -->
<section id="docs" class="docs-section">
<div class="container">
<h2 class="section-title">Documentation</h2>
<div class="docs-grid">
<a href="pages/getting-started.html" class="doc-card">
<div class="doc-icon">📚</div>
<h3>Getting Started</h3>
<p>Installation, configuration, and your first steps with LWS</p>
</a>
<a href="pages/architecture.html" class="doc-card">
<div class="doc-icon">🏗️</div>
<h3>Architecture</h3>
<p>Learn about the modular design and internal structure</p>
</a>
<a href="pages/cli-reference.html" class="doc-card">
<div class="doc-icon">⌨️</div>
<h3>CLI Reference</h3>
<p>Complete command reference with examples</p>
</a>
<a href="pages/api-reference.html" class="doc-card">
<div class="doc-icon">🔌</div>
<h3>API Reference</h3>
<p>REST API endpoints and usage guide</p>
</a>
<a href="pages/configuration.html" class="doc-card">
<div class="doc-icon">⚙️</div>
<h3>Configuration</h3>
<p>Advanced configuration options and best practices</p>
</a>
<a href="pages/contributing.html" class="doc-card">
<div class="doc-icon">🤝</div>
<h3>Contributing</h3>
<p>How to contribute to the project</p>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-brand">
<span class="logo">🐧 LWS</span>
<p>Linux Web Services</p>
</div>
<div class="footer-links">
<div class="footer-column">
<h4>Documentation</h4>
<a href="pages/getting-started.html">Getting Started</a>
<a href="pages/cli-reference.html">CLI Reference</a>
<a href="pages/api-reference.html">API Reference</a>
</div>
<div class="footer-column">
<h4>Community</h4>
<a href="https://github.com/fabriziosalmi/lws" target="_blank">GitHub</a>
<a href="https://github.com/fabriziosalmi/lws/issues" target="_blank">Issues</a>
<a href="pages/contributing.html">Contributing</a>
</div>
<div class="footer-column">
<h4>Legal</h4>
<a href="https://github.com/fabriziosalmi/lws/blob/main/LICENSE" target="_blank">MIT License</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 LWS. Released under the MIT License.</p>
</div>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>