Deploying Wordpress: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
(17 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
<pre> | <pre> | ||
hostname: infrabase1 | hostname: infrabase1 | ||
Network: | Network: 10.1.65.0/24 | ||
IP Address : | IP Address : 10.1.65.11 | ||
Subnet Mask: 255.255.255. | Subnet Mask: 255.255.255.0 | ||
Gateway: | Gateway: 10.1.65.1 | ||
DNS: 8.8.8.8 | DNS: 8.8.8.8 | ||
sudo user: kedar | sudo user: kedar | ||
Container: | Container: webserver | ||
Network: 10. | Network: 10.1.65.0/24 | ||
IP Address : 10. | IP Address : 10.1.65.107 | ||
Subnet Mask: 255.255.255.0 | Subnet Mask: 255.255.255.0 | ||
Gateway: 10.0. | Gateway: 10.1.65.1 | ||
DNS: 8.8.8.8 | |||
sudo user: kedar | |||
Container: db1 | |||
Network: 10.1.65.0/24 | |||
IP Address : 10.1.65.108 | |||
Subnet Mask: 255.255.255.0 | |||
Gateway: 10.1.65.1 | |||
DNS: 8.8.8.8 | DNS: 8.8.8.8 | ||
sudo user: kedar | sudo user: kedar | ||
Line 23: | Line 31: | ||
PC type: Desktop | PC type: Desktop | ||
OS: Ubuntu Desktop | OS: Ubuntu Desktop | ||
IP Address: | IP Address: 10.1.65.160 | ||
</pre> | </pre> | ||
|} | |} | ||
=Before you proceed= | =Before you proceed= | ||
The domain used here is '''networked.com'''. This is | The domain used here is '''networked.com'''. This is used only for demonstration and required dns entries for this domain have already been done to the host file to make the domain and any subdomains reachable on the network. This domain may be owned by someone else and we do not know who it is and we are not linked to them. Wordpress configured for this domain in this howto is not reachable on public IP. If you try networked.com and find any material that may be suitable / unsuitable to you, we are not the owners of the same and we are not responsible for the content. | ||
= | =Introduction= | ||
* Log into the webserver | *We shall be creating a website using wordpress with FQDN as: https://wpress.networked.net | ||
< | *We shall be hosting the site on port number: 35503 | ||
ssh kedar@ | *We shall be using a self signed SSL certificate | ||
*Host entry to ensure this website is reachable is done in the user PC, in absence of a DNS | |||
=Pre-requisites installation= | |||
* Log into the webserver and run the below commands | |||
<pre> | |||
ssh kedar@10.1.65.107 | |||
sudo apt install apache2 php7.2 php7.2-curl php7.2-gd php7.2-intl php7.2-json php7.2-mbstring php7.2-mysql php7.2-soap php7.2-xml php7.2-zip libapache2-mod-php7.2 | sudo apt install apache2 php7.2 php7.2-curl php7.2-gd php7.2-intl php7.2-json php7.2-mbstring php7.2-mysql php7.2-soap php7.2-xml php7.2-zip libapache2-mod-php7.2 | ||
sudo apt install rsync nano openssl | sudo apt install rsync nano openssl | ||
Line 53: | Line 52: | ||
sudo systemctl restart apache2 | sudo systemctl restart apache2 | ||
sudo systemctl status apache2 | sudo systemctl status apache2 | ||
</ | </pre> | ||
=Database Creation= | =Database Creation= | ||
*Database will be created in a mariadb server which is installed into a container created on the host server (infrabase1). Latest mariadb server has been installed and run the below commands after an ssh into the mariadb server. | |||
< | <pre> | ||
sudo mysql -u root -p | sudo mysql -u root -p | ||
CREATE DATABASE | CREATE DATABASE wpress; | ||
GRANT ALL PRIVILEGES ON | GRANT ALL PRIVILEGES ON wpress.* TO "wpress"@"%" IDENTIFIED BY "123456"; | ||
FLUSH PRIVILEGES; | FLUSH PRIVILEGES; | ||
quit; | quit; | ||
</ | </pre> | ||
=Create self signed certificates= | |||
* Log into the webserver and run the below commands | |||
<pre> | |||
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/wpress.key -out /etc/ssl/certs/wpress.crt | |||
</pre> | |||
* You can use a commercial self signed certificate if you have one or can also use free Lets Encrypt certificate | |||
=Configure Apache= | |||
* We are setting up a wordpress website to work on port #35503. We have to configure apache to listen to port #35503 | |||
<pre> | |||
sudo nano /etc/apache2/ports.conf | |||
</pre> | |||
* It will only be listening to 443 and 80. We will need to add the port on which we want apache2 to be listening to. The file ports.conf should look like below | |||
<pre> | |||
Listen 80 | |||
<IfModule ssl_module> | |||
Listen 443 | |||
Listen 35503 | |||
</IfModule> | |||
<IfModule mod_gnutls.c> | |||
Listen 443 | |||
Listen 35503 | |||
</IfModule> | |||
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet | |||
</pre> | |||
* Save and exit the file | |||
=Download Wordpress= | =Download Wordpress= | ||
< | * Log into the webserver and run the below commands | ||
<pre> | |||
wget https://wordpress.org/latest.tar.gz | wget https://wordpress.org/latest.tar.gz | ||
tar -zxvf latest.tar.gz | tar -zxvf latest.tar.gz | ||
</ | </pre> | ||
* After extracting the tar file above, all contents will have been extracted in the wordpress folder in the home directory | |||
=Deploy Wordpress= | =Deploy Wordpress= | ||
* Create a folder in /var/www/html directory | * Create a folder in /var/www/html directory | ||
< | <pre> | ||
cd /var/www/html | cd /var/www/html | ||
sudo mkdir | sudo mkdir wpress | ||
</ | </pre> | ||
* Copy contents of the | * Copy contents of the wordpress folder in wpress | ||
< | <pre> | ||
cd /home/kedar/wordpress | |||
sudo rsync -avz . /var/www/html/wpress/ | |||
</pre> | |||
* Change the owner of the folder to be www-data | * Change the owner of the folder to be www-data | ||
< | <pre> | ||
cd /var/www/html | cd /var/www/html | ||
sudo chown -R www-data:www-data | sudo chown -R www-data:www-data wpress/ | ||
</ | </pre> | ||
* Create virtual host for the website | * Create virtual host for the website | ||
< | <pre> | ||
cd /etc/apache2/sites-available | cd /etc/apache2/sites-available | ||
sudo a2dissite 000-default.conf | sudo a2dissite 000-default.conf | ||
sudo | sudo a2dissite default-ssl.conf | ||
sudo nano | sudo nano wpress.conf | ||
</ | </pre> | ||
* Add the below configuration in the wpress.conf file | |||
<pre> | |||
<IfModule mod_ssl.c> | |||
<VirtualHost _default_:35503> | |||
ServerName wpress.networked.net | |||
ServerAlias wpress | |||
ServerAdmin admin@networked.net | |||
DocumentRoot /var/www/html/wpress | |||
ErrorLog ${APACHE_LOG_DIR}/error.log | |||
CustomLog ${APACHE_LOG_DIR}/access.log combined | |||
SSLEngine on | |||
SSLCertificateFile /etc/ssl/certs/wpress.crt | |||
SSLCertificateKeyFile /etc/ssl/private/wpress.key | |||
<FilesMatch "\.(cgi|shtml|phtml|php)$"> | |||
SSLOptions +StdEnvVars | |||
</FilesMatch> | |||
<Directory /usr/lib/cgi-bin> | |||
SSLOptions +StdEnvVars | |||
</VirtualHost> | </Directory> | ||
</ | </VirtualHost> | ||
</IfModule> | |||
</pre> | |||
* Enable the site and Restart apache service | |||
<pre> | |||
sudo a2ensite wpress.conf | |||
sudo sysemctl restart apache2 | |||
</pre> | |||
* Using a browser navigate to https://wpress.networked.com:35503 | |||
** Answer various questions based on some of the steps we have done above like db name, db user, db server etc. | |||
**Once the installation is complete, consider installing new themes and plugins mentioned below | |||
=Themes & Plugins= | =Themes & Plugins= | ||
Line 133: | Line 184: | ||
*** Elementor Builder | *** Elementor Builder | ||
*** Testimonial Rotator | *** Testimonial Rotator | ||
=Conclusion= | |||
* We have a working wordpress website hosted on an apache web server and listening to port # 35503. If you want to host the website on port # 443, you only have to make a change in the virtualhost configuration and replace 35503 with 443. | |||
* No change is required in /etc/apache2/ports.conf if you are hosting the site on standard 443 port | |||
* In one of the howtos on this website which will be put up soon, we shall be showing how to use nginx as a reverse proxy in which nginx will be listening on port on 443 and will be communicating back to the wordpress website on port # 35503. | |||
[[Category: Intranet Applications]] | [[Category: Intranet Applications]] |
Latest revision as of 05:40, 9 June 2020
Setup Details |
hostname: infrabase1 Network: 10.1.65.0/24 IP Address : 10.1.65.11 Subnet Mask: 255.255.255.0 Gateway: 10.1.65.1 DNS: 8.8.8.8 sudo user: kedar Container: webserver Network: 10.1.65.0/24 IP Address : 10.1.65.107 Subnet Mask: 255.255.255.0 Gateway: 10.1.65.1 DNS: 8.8.8.8 sudo user: kedar Container: db1 Network: 10.1.65.0/24 IP Address : 10.1.65.108 Subnet Mask: 255.255.255.0 Gateway: 10.1.65.1 DNS: 8.8.8.8 sudo user: kedar User PC Details PC type: Desktop OS: Ubuntu Desktop IP Address: 10.1.65.160 |
Before you proceed
The domain used here is networked.com. This is used only for demonstration and required dns entries for this domain have already been done to the host file to make the domain and any subdomains reachable on the network. This domain may be owned by someone else and we do not know who it is and we are not linked to them. Wordpress configured for this domain in this howto is not reachable on public IP. If you try networked.com and find any material that may be suitable / unsuitable to you, we are not the owners of the same and we are not responsible for the content.
Introduction
- We shall be creating a website using wordpress with FQDN as: https://wpress.networked.net
- We shall be hosting the site on port number: 35503
- We shall be using a self signed SSL certificate
- Host entry to ensure this website is reachable is done in the user PC, in absence of a DNS
Pre-requisites installation
- Log into the webserver and run the below commands
ssh kedar@10.1.65.107 sudo apt install apache2 php7.2 php7.2-curl php7.2-gd php7.2-intl php7.2-json php7.2-mbstring php7.2-mysql php7.2-soap php7.2-xml php7.2-zip libapache2-mod-php7.2 sudo apt install rsync nano openssl sudo a2enmod ssl sudo a2enmod rewrite sudo systemctl restart apache2 sudo systemctl status apache2
Database Creation
- Database will be created in a mariadb server which is installed into a container created on the host server (infrabase1). Latest mariadb server has been installed and run the below commands after an ssh into the mariadb server.
sudo mysql -u root -p CREATE DATABASE wpress; GRANT ALL PRIVILEGES ON wpress.* TO "wpress"@"%" IDENTIFIED BY "123456"; FLUSH PRIVILEGES; quit;
Create self signed certificates
- Log into the webserver and run the below commands
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/wpress.key -out /etc/ssl/certs/wpress.crt
- You can use a commercial self signed certificate if you have one or can also use free Lets Encrypt certificate
Configure Apache
- We are setting up a wordpress website to work on port #35503. We have to configure apache to listen to port #35503
sudo nano /etc/apache2/ports.conf
- It will only be listening to 443 and 80. We will need to add the port on which we want apache2 to be listening to. The file ports.conf should look like below
Listen 80 <IfModule ssl_module> Listen 443 Listen 35503 </IfModule> <IfModule mod_gnutls.c> Listen 443 Listen 35503 </IfModule> # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
- Save and exit the file
Download Wordpress
- Log into the webserver and run the below commands
wget https://wordpress.org/latest.tar.gz tar -zxvf latest.tar.gz
- After extracting the tar file above, all contents will have been extracted in the wordpress folder in the home directory
Deploy Wordpress
- Create a folder in /var/www/html directory
cd /var/www/html sudo mkdir wpress
- Copy contents of the wordpress folder in wpress
cd /home/kedar/wordpress sudo rsync -avz . /var/www/html/wpress/
- Change the owner of the folder to be www-data
cd /var/www/html sudo chown -R www-data:www-data wpress/
- Create virtual host for the website
cd /etc/apache2/sites-available sudo a2dissite 000-default.conf sudo a2dissite default-ssl.conf sudo nano wpress.conf
- Add the below configuration in the wpress.conf file
<IfModule mod_ssl.c> <VirtualHost _default_:35503> ServerName wpress.networked.net ServerAlias wpress ServerAdmin admin@networked.net DocumentRoot /var/www/html/wpress ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined SSLEngine on SSLCertificateFile /etc/ssl/certs/wpress.crt SSLCertificateKeyFile /etc/ssl/private/wpress.key <FilesMatch "\.(cgi|shtml|phtml|php)$"> SSLOptions +StdEnvVars </FilesMatch> <Directory /usr/lib/cgi-bin> SSLOptions +StdEnvVars </Directory> </VirtualHost> </IfModule>
- Enable the site and Restart apache service
sudo a2ensite wpress.conf sudo sysemctl restart apache2
- Using a browser navigate to https://wpress.networked.com:35503
- Answer various questions based on some of the steps we have done above like db name, db user, db server etc.
- Once the installation is complete, consider installing new themes and plugins mentioned below
Themes & Plugins
- Themes
- Minamaze
- Hestia
- Plugins
- Secuirty
- Admin Block country
- Limit Login Attempts Reloaded
- WP Security Audit Log
- User Role Editor
- Wordpress Access Control
- WP Content Copy Protection & No Right Click
- Administration
- Auto Hide Admin Bar
- WP Super Cache
- Slimstat Analytics
- Wordpress Importer
- WP Mail SMTP
- Multisite User Management
- Social
- Buddypress (building your community)
- Wordpress Social Login
- Facebook Stream
- WP TFeed
- Content Management
- Custom Sidebars
- Disable Gutenberg
- Shortcodes Ultimate
- Elementor Builder
- Testimonial Rotator
- Secuirty
Conclusion
- We have a working wordpress website hosted on an apache web server and listening to port # 35503. If you want to host the website on port # 443, you only have to make a change in the virtualhost configuration and replace 35503 with 443.
- No change is required in /etc/apache2/ports.conf if you are hosting the site on standard 443 port
- In one of the howtos on this website which will be put up soon, we shall be showing how to use nginx as a reverse proxy in which nginx will be listening on port on 443 and will be communicating back to the wordpress website on port # 35503.