trying to install wordpress with cli

This commit is contained in:
hugo gogo
2022-09-09 13:59:35 +02:00
parent 3f7a3e2170
commit 1b48f4b6d3
6 changed files with 45 additions and 36 deletions

View File

@@ -136,20 +136,13 @@
- [conf file in conf.d or sites-available ?](https://serverfault.com/questions/527630/difference-in-sites-available-vs-sites-enabled-vs-conf-d-directories-nginx#answer-870709)
- [command line parameters](https://nginx.org/en/docs/switches.html)
- `sudo nginx -t` will launch a test to evaluate config file
- [configuring nginx with php-fpm](https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/#connecting-nginx-to-php-fpm)
#### openssl
- [openssl faq](https://www.openssl.org/docs/faq.html)
- [openssl req man](https://www.openssl.org/docs/man1.0.2/man1/openssl-req.html)
- [SO discussion about ssl self signed certificate and becoming a CA](https://stackoverflow.com/questions/10175812/how-to-generate-a-self-signed-ssl-certificate-using-openssl)
#### wordpress
- [install wp](https://wordpress.org/support/article/how-to-install-wordpress/#detailed-instructions)
- [install wp with wp-cli](https://make.wordpress.org/cli/handbook/how-to-install/)
###### install wp
- wget https://wordpress.org/latest.tar.gz
- tar -xzvf latest.tar.gz
#### mariadb
- [mariadb tutorial](https://www.mariadbtutorial.com/)
- server vs client :
@@ -193,6 +186,16 @@
```
#### php-fpm
- [](https://en.wikipedia.org/wiki/FastCGI)
#### wordpress
- [install wp](https://wordpress.org/support/article/how-to-install-wordpress/#detailed-instructions)
###### install wp
- wget https://wordpress.org/latest.tar.gz
- tar -xzvf latest.tar.gz
- [install wp with wp-cli](https://make.wordpress.org/cli/handbook/how-to-install/)
- [php-fpm : Fastcgi Process Manager](https://en.wikipedia.org/wiki/FastCGI)
- [install wp-cli](https://make.wordpress.org/cli/handbook/guides/installing/)
- [cli commands](https://developer.wordpress.org/cli/commands/)
- [cli install wordpress](https://make.wordpress.org/cli/handbook/how-to-install/)