Wordpress

From Edgar BV Wiki
Revision as of 15:18, 24 January 2019 by Red (talk | contribs) (Created page with "= Installation = <pre> chown -R wp-user:www-data /var/www/example.com/ cmhod 775 /var/www/example.com/wp-content/ -R su wp-user cd ~ mkdir ~/.ssh; cd ~/.ssh ssh-keygen -t rsa...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Installation

chown -R wp-user:www-data /var/www/example.com/
cmhod 775 /var/www/example.com/wp-content/ -R
su wp-user
cd ~
mkdir ~/.ssh; cd ~/.ssh
ssh-keygen -t rsa -b 4096
echo 'from="127.0.0.1"' `cat ~/.ssh/id_rsa.pub` > authorized_keys
exit
cp wp-config-sample.php wp-config.php
chown 775 wp-config.php
vi wp-config.php

----- add to end ----

define('FTP_PUBKEY','/home/wp-user/id_rsa.pub');
define('FTP_PRIVKEY','/home/wp-user/id_rsa');
define('FTP_USER','wp-user');
define('FTP_PASS','');
define('FTP_HOST','localhost');

------

Also, set DB_NAME, DB_USER and DB_PASSWORD

Visit https://api.wordpress.org/secret-key/1.1/salt/
And replace the AUTH_KEY etc with this

Now visit the site