Multiple copies of wordpress on ubuntu server This tutorial will be using command line only. Create a new MySQL database * mysql -u root -p * CREATE DATABASE new_database_name; Give privileges to a new user * GRANT ALL PRIVILEGES ON new_database_name.* TO ‘new_user_name’@’localhost’ IDENTIFIED BY ‘chosen_password’; * quit Next copy your old wordpress directory * sudo cp -r olddirectory newdirectory <– old directory should be something like ‘wordpress’ -r is for recursive * sudo nano newdirectory/wp-config.php edit the following lines in your wp-config.php file * define('DB_NAME', 'wordpress'); // The name of the database * define('DB_USER', 'username'); // Your MySQL username * define('DB_PASSWORD', 'password'); // ...and password Then set your vhosts * cd /etc/apache2/sites-available * sudo cp default site1 * sudo a2ensite site1 * sudo service apache2 reload For more information see here: http://www.foscode.com/apache-virtual-host-ubuntu/ http://codex.wordpress.org/Installing_Multiple_Blogs Zeen v3.6.1 - Next Generation Magazine WordPress Zeen v3.6.1 is a premium responsive next-generation news & magazine WordPress theme. You’ve literally never seen or used a magazine that looks or works like this before. The Zeen theme can quickly be mastered by users of any skill level. Power your creative ideas and create a beautiful, silky-smooth and highly unique magazine, blog, newspaper, reviews site or even full-blown
New Blog Hosting
Step 6 setup auto renewal for your ssl certificates
May 11 , 2021 |4 Comments
Step 6 Setup Auto Renewal For Your Ssl Certificates
Let’s encrypt certificates expire after 90 days. The command for renewal is If you run it now, it’ll tell you that your certificates are not due for What we’ll do is to set up a weekly cronjob that tries to renew the certificates, and then reloads nginx. First, open the crontab as root Next add the following lines to the crontab. 30 2 * * 1 letsencrypt renew 35 2 * * 1 /etc/init.d/nginx reload

How To Set Up Auto Renewal Of Ssl Certificates
Share this post:

BlogNiche.com
Professional niche blogs with track record over 1M+ blog posts, Still counting.
Connect: View All Posts
0 replies