diff --git a/openlitespeed_wordpress/README.md b/openlitespeed_wordpress/README.md index 98ed04d..7440894 100644 --- a/openlitespeed_wordpress/README.md +++ b/openlitespeed_wordpress/README.md @@ -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/) @@ -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" @@ -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 }}" @@ -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 +``` \ No newline at end of file diff --git a/openlitespeed_wordpress/galaxy.yml b/openlitespeed_wordpress/galaxy.yml index 555b691..ae4f94b 100644 --- a/openlitespeed_wordpress/galaxy.yml +++ b/openlitespeed_wordpress/galaxy.yml @@ -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