161 lines
6.6 KiB
Markdown
161 lines
6.6 KiB
Markdown
<p align="center"><img src="https://docs.wordops.net/images/logo.png" width="400" alt="Wordops" /><a href="https://wordops.net">
|
|
|
|
<br>
|
|
</p>
|
|
|
|
<h2 align="center">An essential toolset that eases WordPress site and server administration</h2>
|
|
|
|
<p align="center">
|
|
<img src="https://img.virtubox.net/images/2019/03/27/wordops-stable-4.mp4.gif" width="600" alt="WordOps" />
|
|
|
|
</p>
|
|
|
|
<p align="center">
|
|
<a href="https://travis-ci.org/WordOps/WordOps"><img src="https://travis-ci.org/WordOps/WordOps.svg?branch=master" alt="build"></a>
|
|
<img src="https://img.shields.io/github/license/wordops/wordops.svg" alt="MIT">
|
|
<img src="https://img.shields.io/github/last-commit/wordops/wordops.svg" alt="Commits">
|
|
<img alt="GitHub release" src="https://img.shields.io/github/release-pre/wordops/wordops.svg">
|
|
</p>
|
|
|
|
<p align="center">
|
|
<a href="#key-features">Key Features</a> •
|
|
<a href="#usage">Usage</a> •
|
|
<a href="https://github.com/WordOps/WordOps/projects">RoadMap</a> •
|
|
<a href="https://github.com/WordOps/WordOps/blob/master/CHANGELOG.md">Changelog</a> •
|
|
<a href="#credits">Credits</a> •
|
|
<a href="#license">License</a>
|
|
</p>
|
|
<p align="center">
|
|
<a href="https://wordops.net"> WordOps site</a> •
|
|
<a href="https://docs.wordops.net">Documentation</a> •
|
|
<a href="https://community.wordops.net">Community forum</a> •
|
|
<a href="https://community.wordops.io/slack">Slack</a>
|
|
|
|
</p>
|
|
|
|
---
|
|
|
|
## Key Features
|
|
|
|
- **Easy to install** : One step automated installer with migration from EasyEngine v3 support
|
|
- **Fast deployment** : Fast and automated WordPress, Nginx, PHP, MySQL & Redis installation
|
|
- **Up-to-date** : Nginx 1.14.2 with Brotli support, PHP 7.2 & 7.3, MariaDB 10.3 & Redis 5.0
|
|
- **Secured** : Hardened WordPress security with strict Nginx location directives
|
|
- **Powerful** : Optimized Nginx configurations with multiple cache backends support
|
|
- **SSL** : Let's Encrypt SSL certificates handled by acme.sh
|
|
- **Modern** : Secured SSL/TLS encryption with strong ciphers_suite, modern TLS protocols and HSTS support
|
|
- **Monitoring** : Live Nginx vhost traffic with ngx_vts_module and server monitoring with Netdata
|
|
|
|
## Requirements
|
|
|
|
### Operating System
|
|
|
|
- Ubuntu 16.04 LTS (Xenial)
|
|
- Ubuntu 18.04 LTS (Bionic)
|
|
- Debian 8 (Jessie)
|
|
- Debian 9 (Stretch)
|
|
|
|
### Ports requirements
|
|
|
|
- SSH (22 or custom)
|
|
- HTTP & HTTPS (80 & 443)
|
|
- WO Admin (22222)
|
|
- GPG key Server (11371 outbound)
|
|
|
|
## Getting Started
|
|
|
|
```bash
|
|
curl -sL wops.cc | sudo bash # Install WordOps
|
|
sudo wo site create example.com --wp # Install required packages & setup WordPress on example.com
|
|
```
|
|
|
|
## Must read
|
|
|
|
WordOps made some fundamental changes:
|
|
|
|
- We've deprecated the mail stack. As an alternative, you can take a look at [Mail-in-a-Box](https://github.com/mail-in-a-box/mailinabox), [iRedMail](https://www.iredmail.org/) or [Caesonia](https://github.com/vedetta-com/caesonia). As Roundcube alternative, there is [Rainloop](https://www.rainloop.net/) or [Afterlogic WebMail](https://github.com/afterlogic/webmail-lite-8)
|
|
- Support for w3tc is dropped as a security precaution.
|
|
- PHP 5.6 has been replaced by PHP 7.2 and PHP 7.0 has been replaced by PHP 7.3.
|
|
- Nginx-ee package has been replaced by Nginx-wo (based on Nginx stable v1.14.2 with Brolti support)
|
|
- HHVM stack has been removed
|
|
- Let's Encrypt stack isn't based on letsencrypt-auto anymore, we use acme.sh to handle SSL certificates
|
|
|
|
If you are going to migrate from EasyEngine v3, here some important informations :
|
|
|
|
- Previous php upstreams in Nginx will not be overwritted
|
|
- php5.6 and php7.0 will not be removed or uninstalled
|
|
- previous Nginx common configurations will not be overwritted
|
|
|
|
## Usage
|
|
|
|
### Standard WordPress sites
|
|
|
|
```bash
|
|
wo site create example.com --wp # install wordpress without any page caching
|
|
wo site create example.com --wp --php73 # install wordpress with PHP 7.3 without any page caching
|
|
wo site create example.com --wpsc # install wordpress with wp-super-cache plugin
|
|
wo site create example.com --wpfc # install wordpress + nginx fastcgi_cache
|
|
wo site create example.com --wpredis # install wordpress + nginx redis_cache
|
|
```
|
|
|
|
### WordPress multisite with subdirectory
|
|
|
|
```bash
|
|
wo site create example.com --wpsubdir # install wpmu-subdirectory without any page caching
|
|
wo site create example.com --wpsubdir --wpsc # install wpmu-subdirectory with wp-super-cache plugin
|
|
wo site create example.com --wpsubdir --wpfc # install wpmu-subdirectory + nginx fastcgi_cache
|
|
wo site create example.com --wpsubdir --wpredis # install wpmu-subdirectory + nginx redis_cache
|
|
```
|
|
|
|
### WordPress multisite with subdomain
|
|
|
|
```bash
|
|
wo site create example.com --wpsubdomain # install wpmu-subdomain without any page caching
|
|
wo site create example.com --wpsubdomain --wpsc # install wpmu-subdomain with wp-super-cache plugin
|
|
wo site create example.com --wpsubdomain --wpfc # install wpmu-subdomain + nginx fastcgi_cache
|
|
wo site create example.com --wpsubdomain --wpredis # install wpmu-subdomain + nginx redis_cache
|
|
```
|
|
|
|
### Non-WordPress sites
|
|
|
|
```bash
|
|
wo site create example.com --html # create example.com for static/html sites
|
|
wo site create example.com --php # create example.com with php support
|
|
wo site create example.com --mysql # create example.com with php & mysql support
|
|
wo site create example.com --proxy=127.0.0.1:3000 # create example.com with nginx as reverse-proxy
|
|
```
|
|
|
|
### Sites secured with Let's Encrypt
|
|
|
|
```bash
|
|
wo site create example.com --wp --letsencrypt # install wordpress & secure site with letsencrypt
|
|
wo site create sub.example.com --wp --letsencrypt=subdomain # install wordpress and secure subdomain with letsencrypt
|
|
```
|
|
|
|
## Update WordOps
|
|
|
|
```bash
|
|
wo update
|
|
```
|
|
|
|
## Support
|
|
|
|
If you feel there is a bug directly related to WordOps, feel free to open an issue.
|
|
For any other questions/suggestions about WordOps or if you need support, please use the [WordOps Community Forum](https://community.wordops.net/).
|
|
|
|
# Contributing
|
|
|
|
If you'd like to contribute, please fork the repository and make changes as you'd like. Pull requests are warmly welcome.
|
|
There is no need to be a developer or a system administrator to contribute to WordOps project. You can still contribute by helping us to improve [WordOps documentation](https://github.com/WordOps/docs.wordops.net).
|
|
|
|
## Credits
|
|
|
|
- Main source : [EasyEngine](https://github.com/easyengine/easyengine)
|
|
- Acme client : [Acme.sh](https://github.com/Neilpang/acme.sh)
|
|
- WordPress deployment : [WP-CLI](https://github.com/wp-cli/wp-cli)
|
|
- Monitoring : [Netdata](https://github.com/netdata/netdata)
|
|
|
|
## License
|
|
|
|
- [MIT](http://opensource.org/licenses/MIT) © [WordOps](https://wordops.net)
|