Skip to content

Commit 8d6705c

Browse files
committed
Merge branch 'mrrobot47-update/readme-for-beta3' into develop
2 parents be2e3f1 + d326e69 commit 8d6705c

1 file changed

Lines changed: 16 additions & 6 deletions

File tree

README.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Performs basic site functions in easyengine.
1818
Runs the site creation.
1919

2020
```bash
21+
ee site create example.com # install wordpress without any page caching (default)
2122
ee site create example.com --wp # install wordpress without any page caching
2223
ee site create example.com --wpredis # install wordpress with page caching
2324
ee site create example.com --wpsubir # install wpmu-subdirectory without any page caching
@@ -26,13 +27,21 @@ ee site create example.com --wpsubdom # install wpmu-subdomain without
2627
ee site create example.com --wpsubdom --wpredis # install wpmu-subdomain with page cache
2728
```
2829

30+
Let's Encrypt SSL
31+
```bash
32+
# Enable SSL using Let’s Encrypt (You can add --letsencrypt along with any other flag.)
33+
ee site create example.com [--letsencrypt|--le]
34+
ee site create example.com --le # install wordpress without any page caching + letsencrypt ssl
35+
ee site create example.com --wpredis --le # install wordpress with page caching + letsencrypt ssl
36+
ee site create example.com --wpsubdom --le # install wordpress wpmu-subdomain + wildcard letsencrypt ssl
37+
```
38+
2939
#### ee site delete
3040
Deletes an existing EasyEngine site including the webroot and the database.
3141

32-
_Warning: Doesn't ask for confirmation_
33-
3442
```bash
35-
ee site delete example.com
43+
ee site delete example.com # Asks for confirmation.
44+
ee site delete example.com --yes # Skips the confirmation prompt.
3645
```
3746

3847
#### ee site disable
@@ -60,9 +69,10 @@ ee site info example.com
6069
Lists the created websites.
6170

6271
```bash
63-
ee site list
64-
ee site list --enabled
65-
ee site list --enabled --format=csv
72+
ee site list # Lists all sites (default: tabular format)
73+
ee site list --format=[count|csv|json|table|text|yaml] # Lists all sites in a particular format
74+
ee site list --enabled # List enabled sites
75+
ee site list --disabled # List disabled sites
6676
```
6777

6878
#### ee site start

0 commit comments

Comments
 (0)