-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
303 lines (259 loc) · 10.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=1000">
<title>Acme PHP | Robust and easy to use PHP implementation of the Let's Encrypt protocol</title>
<link href="/fonts/fonts.css" rel="stylesheet">
<link href="/icons/css/font-awesome.min.css" rel="stylesheet">
<link href="/min/app.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header class="header">
<div class="container">
<h1 class="header-title">
<a href="/">Acme PHP</a>
</h1>
<nav class="header-menu">
<ul>
<li>
<a href="/documentation/">
Documentation
</a>
</li>
<li>
<a href="https://github.com/acmephp/acmephp">
Github
</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="banner">
<div class="container">
<div class="banner-left">
<h2 class="banner-title">
Robust and easy to use PHP implementation of the Let's Encrypt protocol
</h2>
<ul>
<li>
<strong>Acme PHP</strong>
is a simple yet powerful command-line tool to obtain and renew HTTPS certificates
freely and automatically
</li>
<li>
<strong>Acme PHP</strong>
is also a robust and fully-compliant implementation of the ACME protocol in PHP, to deeply
integrate the management of your certificates directly in your application
</li>
</ul>
<a href="/documentation" class="banner-button">
Get Started
</a>
<a href="/documentation/getting-started/1-installation.html" class="banner-button">
Install now
</a>
</div>
<div class="banner-right">
<h2>Get your HTTPS certificate in 4 simple steps:</h2>
<pre>
<span class="comment"># Register your account key in Let's Encrypt</span>
<span class="dollar">$</span> <span class="acmephp">php acmephp.phar</span> <span class="command">register</span> <span class="arguments">myemail@example.org</span>
<span class="comment"># Prove you own the domain "mydomain.com"</span>
<span class="dollar">$</span> <span class="acmephp">php acmephp.phar</span> <span class="command">authorize</span> <span class="arguments">mydomain.com</span>
<span class="comment"># Ask the server to check your proof</span>
<span class="dollar">$</span> <span class="acmephp">php acmephp.phar</span> <span class="command">check</span> <span class="arguments">mydomain.com</span>
<span class="comment"># Get the certificate!</span>
<span class="dollar">$</span> <span class="acmephp">php acmephp.phar</span> <span class="command">request</span> <span class="arguments">mydomain.com</span>
<span class="comment"># To renew, re-run "php acmephp.phar request mydomain.com"</span>
<span class="comment"># Pro-Tip: configure a CRON to renew automatically!</span>
</pre>
</div>
</div>
<div class="clearfix"></div>
</section>
<section class="socials">
<div class="container">
<div class="socials-left">
Check out the latest developments in the
<a href="https://github.com/acmephp/acmephp">
GitHub repository
</a>
</div>
<div class="socials-right">
<a href="https://twitter.com/acme_php">
<i class="fa fa-twitter"></i>
<span>Follow on Twitter</span>
</a>
<a href="https://github.com/acmephp/acmephp">
<i class="fa fa-github"></i>
<span>Star on Github</span>
</a>
</div>
</div>
<div class="clearfix"></div>
</section>
<section class="features">
<div class="container">
<h3 class="features-title">
Features
</h3>
<div class="features-list">
<div class="feature">
<div class="feature-icon">
<i class="fa fa-gears"></i>
</div>
<div class="feature-text">
<h4>Single binary file</h4>
<p>
A single download and you are ready to get certificates,
PHP and OpenSSL are the only requirements.
</p>
</div>
</div>
<div class="feature">
<div class="feature-icon">
<i class="fa fa-file-text-o"></i>
</div>
<div class="feature-text">
<h4>Powerful configuration</h4>
<p>
Acme PHP is based on an expressive configuration file (<code>~/.acmephp/acmephp.conf</code>)
that let you customize almost anything you want.
</p>
</div>
</div>
<div class="feature">
<div class="feature-icon">
<i class="fa fa-clock-o"></i>
</div>
<div class="feature-text">
<h4>Made for automation</h4>
<p>
Simply put a CRON to run <code>acmephp request</code> daily:
Acme PHP will take care of the rest, including avoiding to request the server too much.
</p>
</div>
</div>
<div class="clearfix"></div>
<div class="feature">
<div class="feature-icon">
<i class="fa fa-heartbeat"></i>
</div>
<div class="feature-text">
<h4>Easy to monitor</h4>
<p>
Using Monolog, Acme PHP is able to alert you when certificates were renewed during your CRON.
It supports E-mail, Slack, HipChat, Flowdock, Fleep and you can even add your own!
</p>
</div>
</div>
<div class="feature">
<div class="feature-icon">
<i class="fa fa-cubes"></i>
</div>
<div class="feature-text">
<h4>Extensible</h4>
<p>
Using the configuration, you can send your certificates over the network,
add them to an platformsh/heroku app, and much more.
</p>
</div>
</div>
<div class="feature">
<div class="feature-icon">
<i class="fa fa-hand-peace-o"></i>
</div>
<div class="feature-text">
<h4>Developer friendly</h4>
<p>
Written in PHP with high quality standards, Acme PHP is easy to use in your
application. Manage your certificates directly from your code!
</p>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<nav>
<ul>
<li class="footer-column">
<h5>
Documentation
</h5>
<ul>
<li>
<a href="/documentation/">Command line tool</a>
</li>
<li>
<a href="/documentation/core/introduction.html">Acme PHP library</a>
</li>
<li>
<a href="/documentation/ssl/introduction.html">SSL library</a>
</li>
</ul>
</li>
<li class="footer-column">
<h5>
Contribute
</h5>
<ul>
<li>
<a href="https://github.com/acmephp/acmephp">Github repository</a>
</li>
<li>
<a href="https://github.com/acmephp/acmephp/issues">Issues tracker</a>
</li>
<li>
<a href="https://github.com/acmephp/documentation">Improve documentation</a>
</li>
</ul>
</li>
<li class="footer-column">
<h5>
Connect
</h5>
<ul>
<li>
<a href="https://twitter.com/acme_php">Twitter</a>
</li>
<li>
<a href="https://github.com/acmephp/acmephp">Github</a>
</li>
</ul>
</li>
<li class="footer-column">
<h5>
About
</h5>
<ul>
<li>
© 2016 Titouan Galopin. All Rights Reserved.
</li>
<li>
Acme PHP is built by
<a href="https://twitter.com/titouangalopin">@tgalopin</a> and
<a href="https://twitter.com/jderusse">@jderusse</a>
</li>
<li>
Acme PHP source code and documentation are free and open-source under the
MIT license
</li>
</ul>
</li>
</ul>
</nav>
<div class="clearfix"></div>
</div>
</footer>
</body>
</html>