Skip to content

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Code-Egg committed Sep 3, 2020
1 parent 42b0d01 commit 4097bb9
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 3 deletions.
43 changes: 41 additions & 2 deletions openlitespeed_wordpress/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
[![Build Status](https://travis-ci.com/Code-Egg/ansible-lomp-wp.svg?branch=master)](https://github.com/Code-Egg/ansible-lomp-wp)

This collection contains:

- [WordPress](https://wordpress.org/)
- [OpenLiteSpeed](https://openlitespeed.org/)
- [MySQL](https://www.mysql.com/)
Expand Down Expand Up @@ -41,7 +42,13 @@ group: www-data
#PHP Settings
php_version: "74"
php_dversion: "7.4"
php_opt_modules: [ 'lsphp{{ php_version }}-curl', 'lsphp{{ php_version }}-imagick', 'lsphp{{ php_version }}-intl', 'lsphp{{ php_version }}-opcache', 'lsphp{{ php_version }}-memcached', 'lsphp{{ php_version }}-tidy' ]
php_opt_modules:
- "curl"
- "imagick"
- "intl"
- "opcache"
- "memcached"
- "tidy"
php_memory_limit: "128"
php_max_execution_time: "60"
php_upload_max_filesize: "128M"
Expand All @@ -54,7 +61,7 @@ mysql_user: "egguser"
mysql_password: "password"

#HTTP Settings
http_host: "your_domain"
http_host: "example.com"
http_port: "80"
https_port: "443"
doc_root: "/var/www/{{ http_host }}"
Expand All @@ -66,3 +73,35 @@ ssl_crt: "/usr/local/lsws/admin/conf/webadmin.crt"
```command
ansible-playbook playbook.yml
```

## Structure

```
├── README.md
├── ansible.cfg
├── galaxy.yml
├── inventory
├── playbook.yml
├── plugins
├── roles
│   ├── mysql
│   │   ├── defaults
│   │   ├── meta
│   │   └── tasks
│   ├── openlitespeed
│   │   ├── defaults
│   │   ├── files
│   │   ├── handlers
│   │   ├── meta
│   │   └── tasks
│   ├── php
│   │   ├── defaults
│   │   ├── meta
│   │   └── tasks
│   └── wordpress
│   ├── files
│   ├── meta
│   └── tasks
└── vars
└── default.yml
```
2 changes: 1 addition & 1 deletion openlitespeed_wordpress/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace: code_egg
name: openlitespeed_wordpress

# The version of the collection. Must be compatible with semantic versioning
version: 1.0.0
version: 1.0.2

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down

0 comments on commit 4097bb9

Please sign in to comment.