|
1 | 1 |  |
2 | 2 |
|
3 | | -# easyengine |
| 3 | +## Introduction |
4 | 4 |
|
5 | 5 | easyengine (ee) is a linux shell-script collection, which makes it easy to manage your wordpress-nginx sites on an ubuntu server. |
6 | 6 |
|
7 | 7 | ## Quick Start |
8 | 8 |
|
9 | 9 | ```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 |
13 | 13 | ``` |
14 | 14 |
|
15 | | -## Need even more info? |
| 15 | +## Upgrading from easyengine 1.0 to 1.1 and above |
16 | 16 |
|
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