moved stuff around

This commit is contained in:
Adrien Luxey 2020-05-02 07:51:39 +02:00
parent 3661680305
commit dc35e4de30
25 changed files with 16 additions and 2 deletions

View file

@ -27,11 +27,16 @@ Python modules:
TODO: Ansible task to install that before the rest
# Features
## Features
* Creating Wordpress instances (yoohoo, da best)
* That send mail!!11!1!
* Supports existing and new installs
* Creating Drupal instances
* Only existing ones (no new installs)
### Does not support
@ -56,4 +61,13 @@ TODO: Ansible task to install that before the rest
# Remove the stupid file
rm /etc/nginx/sites-enabled/yoursite.com
service nginx restart
```
```
## Useful SQL commands
```sql
select host, user, password from mysql.user order by user;
create user 'arvuhez'@'172.26.0.2' identified by 'kjhs';
grant all on arvuhez.* to 'arvuhez'@'172.26.0.2';
show grants for 'arvuhez'@'172.26.0.2';
```