MediaWiki Install 2022-01-22: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Category:Hacking Category:OpenDevOps https://wiki.heatsynclabs.org/wiki/MediaWiki_On_Lightsail") |
No edit summary |
||
Line 2: | Line 2: | ||
[[Category:OpenDevOps]] | [[Category:OpenDevOps]] | ||
First version: | |||
https://wiki.heatsynclabs.org/wiki/MediaWiki_On_Lightsail | https://wiki.heatsynclabs.org/wiki/MediaWiki_On_Lightsail | ||
= HerdSecurities Install = | |||
== Lightsail Instance == | |||
Initialization Script | |||
<pre> | |||
apt update -y | |||
apt upgrade -y | |||
apt install -y apache2 certbot python3-certbot-apache | |||
apt install -y mariadb-server php php-mysql libapache2-mod-php php-xml php-mbstring | |||
# Extra Features: | |||
apt install -y php-apcu php-intl imagemagick php-cli php-curl git | |||
</pre> |
Revision as of 16:08, 17 April 2021
First version:
https://wiki.heatsynclabs.org/wiki/MediaWiki_On_Lightsail
HerdSecurities Install
Lightsail Instance
Initialization Script
apt update -y apt upgrade -y apt install -y apache2 certbot python3-certbot-apache apt install -y mariadb-server php php-mysql libapache2-mod-php php-xml php-mbstring # Extra Features: apt install -y php-apcu php-intl imagemagick php-cli php-curl git