Skip to content

Commit 4c7435c

Browse files
committed
Update README.md
Updated for 1.1
1 parent 85fc5f3 commit 4c7435c

File tree

1 file changed

+49
-6
lines changed

1 file changed

+49
-6
lines changed

README.md

Lines changed: 49 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,60 @@
11
![easyengine](http://rtcamp.com/wp-content/uploads/2013/08/easyengine-logo-858x232px.png "easyengine")
22

3-
# easyengine
3+
## Introduction
44

55
easyengine (ee) is a linux shell-script collection, which makes it easy to manage your wordpress-nginx sites on an ubuntu server.
66

77
## Quick Start
88

99
```bash
10-
curl -sL rt.cx/ee | sudo bash # install easyengine
11-
ee system install # install nginx, php, mysql, postfix
12-
ee site create wp basic example.com # install wordpress on example.com
10+
curl -sL rt.cx/ee | sudo bash # install easyengine
11+
ee system install # install nginx, php, mysql, postfix
12+
ee site create example.com --wp # create example.com and install wordpress on it
1313
```
1414

15-
## Need even more info?
15+
## Upgrading from easyengine 1.0 to 1.1 and above
1616

17-
Check out our [wiki] (http://rtcamp.com/easyengine/docs/) and [faq] (http://rtcamp.com/easyengine/faq/) page
17+
```bash
18+
/bin/bash <(curl -sL https://raw.github.com/rtCamp/easyengine/stable/usr/local/sbin/eeupdate)
19+
```
20+
21+
## Site Creation Commands
22+
23+
### Standard WordPress Sites
24+
25+
```bash
26+
ee site create example.com --wp # install wordpress without any page caching
27+
ee site create example.com --w3tc # install wordpress with w3-total-cache plugin
28+
ee site create example.com --wpsc # install wordpress with wp-super-cache plugin
29+
ee site create example.com --wpfc # install wordpress + nginx fastcgi_cache
30+
```
31+
32+
### WordPress Multsite with subdirectory
33+
34+
```bash
35+
ee site create example.com --wpsubdir # install wpmu-subdirectory without any page caching
36+
ee site create example.com --wpsubdir --w3tc # install wpmu-subdirectory with w3-total-cache plugin
37+
ee site create example.com --wpsubdir --wpsc # install wpmu-subdirectory with wp-super-cache plugin
38+
ee site create example.com --wpsubdir --wpfc # install wpmu-subdirectory + nginx fastcgi_cache
39+
```
40+
41+
### WordPress Multsite with subdomain
42+
43+
```bash
44+
ee site create example.com --wpsubdom # install wpmu-subdomain without any page caching
45+
ee site create example.com --wpsubdom --w3tc # install wpmu-subdomain with w3-total-cache plugin
46+
ee site create example.com --wpsubdom --wpsc # install wpmu-subdomain with wp-super-cache plugin
47+
ee site create example.com --wpsubdom --wpfc # install wpmu-subdomain + nginx fastcgi_cache
48+
```
49+
50+
### Non-WordPress Sites
51+
```bash
52+
ee site create example.com --html # create example.com for static/html sites
53+
ee site create example.com --php # create example.com with php support
54+
ee site create example.com --mysql # create example.com with php & mysql support
55+
```
56+
57+
## Useful Links
58+
- [Documentation] (http://rtcamp.com/easyengine/docs/)
59+
- [FAQ] (http://rtcamp.com/easyengine/faq/)
60+
- [Conventions used] (http://rtcamp.com/wordpress-nginx/tutorials/conventions/)

0 commit comments

Comments
 (0)