moved stuff around
This commit is contained in:
parent
3661680305
commit
dc35e4de30
25 changed files with 16 additions and 2 deletions
|
@ -27,11 +27,16 @@ Python modules:
|
||||||
|
|
||||||
TODO: Ansible task to install that before the rest
|
TODO: Ansible task to install that before the rest
|
||||||
|
|
||||||
# Features
|
## Features
|
||||||
|
|
||||||
* Creating Wordpress instances (yoohoo, da best)
|
* Creating Wordpress instances (yoohoo, da best)
|
||||||
|
|
||||||
* That send mail!!11!1!
|
* That send mail!!11!1!
|
||||||
|
* Supports existing and new installs
|
||||||
|
|
||||||
|
* Creating Drupal instances
|
||||||
|
|
||||||
|
* Only existing ones (no new installs)
|
||||||
|
|
||||||
### Does not support
|
### Does not support
|
||||||
|
|
||||||
|
@ -56,4 +61,13 @@ TODO: Ansible task to install that before the rest
|
||||||
# Remove the stupid file
|
# Remove the stupid file
|
||||||
rm /etc/nginx/sites-enabled/yoursite.com
|
rm /etc/nginx/sites-enabled/yoursite.com
|
||||||
service nginx restart
|
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';
|
||||||
|
```
|
Loading…
Reference in a new issue