MediaWiki:Installasi on Ubuntu 20.04 (Nginx): Difference between revisions
No edit summary |
m Kangtain moved page Install MediaWiki on Ubuntu 20.04 to MediaWiki:Installasi on Ubuntu 20.04 (Nginx) |
||
| (11 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
==Step 1: Downloading MediaWiki== | __NOTOC__ | ||
===Step 1: Downloading MediaWiki=== | |||
*Download the latest stable version of MediaWiki: | *Download the latest stable version of MediaWiki: | ||
wget https://releases.wikimedia.org/mediawiki/1.36/mediawiki-1.36.2.tar.gz | wget <nowiki>https://releases.wikimedia.org/mediawiki/1.36/mediawiki-1.36.2.tar.gz</nowiki> | ||
*Extract the archive to /var/www/. | *Extract the archive to /var/www/. | ||
| Line 9: | Line 10: | ||
*Rename the directory. | *Rename the directory. | ||
sudo mv /var/www/mediawiki-1.36.2 /var/www/nama_situs | |||
sudo | *Then we need to install some PHP extensions required by MediaWiki. | ||
sudo apt install php7.4-mbstring php7.4-xml php7.4-fpm php7.4-json php7.4-mysql php7.4-curl php7.4-intl php7.4-gd php7.4-mbstring texlive imagemagick | |||
*Next, we need to install external dependencies via Composer (a PHP dependency manager). | |||
sudo apt install composer | |||
cd /var/www/mediawiki/ | |||
sudo composer install --no-dev | |||
sudo | <blockquote> | ||
'''Note:''' That MediaWiki currently doesn’t support PHP8.0. If you have installed PHP8.0 on your Ubuntu server, then you should run sudo update-alternatives --config php command to set PHP7.4 as the default version. | |||
</blockquote> | |||
*Once all dependencies are installed, run the following command to set web server user (www-data) as the owner of this directory. | |||
sudo | sudo chown www-data:www-data /var/www/mediawiki/ -R | ||
===Step 2: Creating a Database=== | |||
*Log into [[MariaDB]] server with the command below. | |||
sudo mysql -u root | |||
*Create a database for MediaWiki. This tutorial name the database mediawiki, but you can use whatever name you like. | |||
CREATE DATABASE <span style="color:#ff0000">mediawiki</span>; | |||
*Then run the following command at MariaDB prompt to create a database user and grant privileges to this user. Replace mediawiki, wikiuser and password with your preferred database name, database username and user password respectively. | |||
GRANT ALL PRIVILEGES ON <span style="color:#ff0000">mediawiki</span>.* TO '<span style="color:#ff0000">wikiuser</span>'@'localhost' IDENTIFIED BY '<span style="color:#ff0000">password</span>'; | |||
*Next, flush MariaDB privileges and exit. | |||
flush privileges; | |||
exit; | |||
Step | ===Step 3: Create Apache Virtual Host or Nginx Config File for MediaWiki=== | ||
===Nginx=== | |||
*If you use Nginx web server, create a server block file for MediaWiki under <code>/etc/nginx/conf.d/</code> directory. | |||
sudo nano /etc/nginx/conf.d/mediawiki.conf | |||
*Copy the following text and paste it into the file. Replace wiki.your-domain.com with your actual domain name. Don’t forget to create DNS A record for this domain name. | |||
server { | |||
listen 80; | |||
listen [::]:80; | |||
server_name <span style="color:#ff0000">wiki.your-domain.com</span>; | |||
root <span style="color:#ff0000">/var/www/mediawiki</span>; | |||
index index.php; | |||
error_log /var/log/nginx/mediawiki.error; | |||
access_log /var/log/nginx/mediawiki.access; | |||
location / { | |||
try_files $uri $uri/ /index.php; | |||
} | |||
location ~ /.well-known { | |||
allow all; | |||
} | |||
location ~ /\.ht { | |||
deny all; | |||
} | |||
location ~ \.php$ { | |||
fastcgi_pass unix:/run/php/php7.4-fpm.sock; | |||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |||
include fastcgi_params; | |||
include snippets/fastcgi-php.conf; | |||
Copy the following text and paste it into the file. Replace wiki.your-domain.com with your actual domain name. Don’t forget to create DNS A record for this domain name. | |||
server { | |||
} | } | ||
} | |||
*Save and close the file. Then test Nginx configuration. | |||
sudo nginx -t | |||
Save and close the file. Then test Nginx configuration. | |||
sudo nginx -t | |||
'''Output sample''' | |||
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok | |||
nginx: configuration file /etc/nginx/nginx.conf test is successful | |||
sudo | *If the test is successful, reload Nginx web server. | ||
sudo systemctl reload nginx | |||
===Step 4: Enabling HTTPS=== | |||
*To encrypt the HTTP traffic, we can enable HTTPS by installing a free TLS certificate issued from Let’s Encrypt. Run the following command to install Let’s Encrypt client (certbot) on Ubuntu 20.04 server. | |||
sudo apt install certbot | |||
sudo apt install python3-certbot-nginx | *If you use Nginx, then you also need to install the Certbot Nginx plugin. | ||
sudo apt install python3-certbot-nginx | |||
Next, run the following command to obtain and install TLS certificate. | *Next, run the following command to obtain and install TLS certificate. | ||
sudo certbot --nginx --agree-tos --redirect --hsts --staple-ocsp --email <span style="color:#ff0000">you@example.com</span> -d <span style="color:#ff0000">wiki.your-domain.com</span> | |||
'''Where''' | |||
*<code>--nginx</code>: Use the nginx plugin. | |||
*<code>--apache</code>: Use the Apache plugin. | |||
*<code>--agree-tos</code>: Agree to terms of service. | |||
*<code>--redirect</code>: Force HTTPS by 301 redirect. | |||
*<code>--hsts</code>: Add the Strict-Transport-Security header to every HTTP response. Forcing browser to always use TLS for the domain. Defends against SSL/TLS Stripping. | |||
*<code>--staple-ocsp</code>: Enables OCSP Stapling. A valid OCSP response is stapled to the certificate that the server offers during TLS. | |||
*The certificate should now be obtained and automatically installed. | |||
==Terkait== | |||
*[[MariaDB]] | |||
*[[Server]] | |||
*[[MediaWiki]] | |||
[[Category:Tutorial]] | |||
[[Category:CMS]] | |||
[[Category:Server]] | |||