Skip to content

Commit 4097bb9

Browse files
committed
1.0.2
1 parent 42b0d01 commit 4097bb9

2 files changed

Lines changed: 42 additions & 3 deletions

File tree

openlitespeed_wordpress/README.md

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
[![Build Status](https://travis-ci.com/Code-Egg/ansible-lomp-wp.svg?branch=master)](https://github.com/Code-Egg/ansible-lomp-wp)
33

44
This collection contains:
5+
56
- [WordPress](https://wordpress.org/)
67
- [OpenLiteSpeed](https://openlitespeed.org/)
78
- [MySQL](https://www.mysql.com/)
@@ -41,7 +42,13 @@ group: www-data
4142
#PHP Settings
4243
php_version: "74"
4344
php_dversion: "7.4"
44-
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' ]
45+
php_opt_modules:
46+
- "curl"
47+
- "imagick"
48+
- "intl"
49+
- "opcache"
50+
- "memcached"
51+
- "tidy"
4552
php_memory_limit: "128"
4653
php_max_execution_time: "60"
4754
php_upload_max_filesize: "128M"
@@ -54,7 +61,7 @@ mysql_user: "egguser"
5461
mysql_password: "password"
5562

5663
#HTTP Settings
57-
http_host: "your_domain"
64+
http_host: "example.com"
5865
http_port: "80"
5966
https_port: "443"
6067
doc_root: "/var/www/{{ http_host }}"
@@ -66,3 +73,35 @@ ssl_crt: "/usr/local/lsws/admin/conf/webadmin.crt"
6673
```command
6774
ansible-playbook playbook.yml
6875
```
76+
77+
## Structure
78+
79+
```
80+
├── README.md
81+
├── ansible.cfg
82+
├── galaxy.yml
83+
├── inventory
84+
├── playbook.yml
85+
├── plugins
86+
├── roles
87+
│   ├── mysql
88+
│   │   ├── defaults
89+
│   │   ├── meta
90+
│   │   └── tasks
91+
│   ├── openlitespeed
92+
│   │   ├── defaults
93+
│   │   ├── files
94+
│   │   ├── handlers
95+
│   │   ├── meta
96+
│   │   └── tasks
97+
│   ├── php
98+
│   │   ├── defaults
99+
│   │   ├── meta
100+
│   │   └── tasks
101+
│   └── wordpress
102+
│   ├── files
103+
│   ├── meta
104+
│   └── tasks
105+
└── vars
106+
└── default.yml
107+
```

openlitespeed_wordpress/galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace: code_egg
99
name: openlitespeed_wordpress
1010

1111
# The version of the collection. Must be compatible with semantic versioning
12-
version: 1.0.0
12+
version: 1.0.2
1313

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

0 commit comments

Comments
 (0)