Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davestephens/ansible-ubuntu-wordpress
Quickly build a super-fast Ubuntu-based Wordpress web server with object and page caching.
https://github.com/davestephens/ansible-ubuntu-wordpress
ansible ansible-playbook ubuntu wordpress
Last synced: about 8 hours ago
JSON representation
Quickly build a super-fast Ubuntu-based Wordpress web server with object and page caching.
- Host: GitHub
- URL: https://github.com/davestephens/ansible-ubuntu-wordpress
- Owner: davestephens
- Created: 2021-01-27T17:05:36.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-21T17:37:39.000Z (almost 3 years ago)
- Last Synced: 2023-08-20T04:10:29.621Z (about 1 year ago)
- Topics: ansible, ansible-playbook, ubuntu, wordpress
- Language: HTML
- Homepage:
- Size: 21.5 KB
- Stars: 11
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ansible Ubuntu Wordpress
This Ansible playbook sets up an Ubuntu 20.04 box for super-fast Wordpress hosting.
It includes:
- Configuring Ubuntu with auto updates
- Nginx, with page caching to local ram storage
- phpfpm for PHP
- MariaDB for a database
- Redis for object caching
- Certbot & LetsEncrypt for SSL.Additionally, it'll:
- Install a list of Wordpress plugins
- Install a list of themes, including activating one if you want it to
- Import a database export from another site## Pre-requisites
- An Ubuntu 20.04 box
- Ansible## Installation
1. Create your own inventory: `cp -rfp inventories/sample inventories/my-cool-website`
2. Review `group_vars/all.yml`. Change settings by overriding them in `inventories/my-cool-website/group_vars/all.yml`.
3. Update `inventories/my-cool-website/inventory` with your host's IP address.
4. Install the dependent roles and collections: `ansible-galaxy install -r requirements.yml`
5. Run it: `ansible-playbook -i inventories/my-cool-website/inventory setup.yml -b`