automation/README.md

38 lines
1.4 KiB
Markdown
Raw Normal View History

2020-05-03 16:40:16 +00:00
# Automation: because 10h of coding can save 10m of your life!
2020-05-03 16:39:14 +00:00
2020-05-03 16:39:56 +00:00
Go to [deployer](deployer/), where the fun is at.
2020-05-03 16:39:14 +00:00
## TODO
* dockerise nextcloud, synapse, gitea
* backup db
* send backups to a remote
# Random notes
2020-01-28 12:40:31 +00:00
## How to package Wordpress
### Wordpress + PHP-FPM in Docker + nginx
* [Dockerise your PHP app with PHP-FPM and nginx](http://geekyplatypus.com/dockerise-your-php-application-with-nginx-and-php7-fpm/)
nginx and PHP-FPM both need access to the files--at the same location. It's thus not easy to have a single nginx serving multiple PHP-FPM containers. You always need a webserver in the same container as PHP-FPM.
### Alternatives
* [WP multisite + Caddy](https://skippy.net/caddy-docker-php-wordpress): arguments against using the Wordpress Docker image, keeps the whole wp install outside the image, and instead focuses on properly configuring PHP-FPM. Has the advantage of being reusable for other PHP projects. Is well argumented. Tackles file access rights and mailing (ssmtp), it's a good source!
#### Which webserver?
traefik does not support php-fpm, Caddy does. Not such a problem, we can keep Apache inside the container, who gives a shit.
### Wordpress security
* [File permissions](https://wordpress.org/support/article/changing-file-permissions/)
* [Sécu Wordpress (fr)](http://wptheme.fr/guide-creation-site-blog/securiser-et-nettoyer-theme-wordpress-virus/)