Skip to content

Instantly share code, notes, and snippets.

@linuxkeepup
Last active October 4, 2022 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxkeepup/1351525c12f740d1b0c9547652c4dafa to your computer and use it in GitHub Desktop.
Save linuxkeepup/1351525c12f740d1b0c9547652c4dafa to your computer and use it in GitHub Desktop.
Joomla Install with LAMP Stack on Ubuntu/Linux
Please send me your query for Joomla support service
WhatsApp: http://tiny.cc/linuxkeepup
sudo apt install apache2 mariadb-server-10.3 mariadb-client-10.3 php7.4 libapache2-mod-php7.4 php7.4-cli php7.4-mysql php7.4-json php7.4-opcache php7.4-mbstring php7.4-intl php7.4-xml php7.4-gd php7.4-zip php7.4-curl php7.4-xmlrpc
nano /etc/apache2/sites-available/000-default.conf
<VirtualHost *:80>
DirectoryIndex index.php
DocumentRoot /var/www/html/joomla
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory "/var/www/html/joomla">
DirectoryIndex index.php index.html.var index.php
Options FollowSymlinks
Allowoverride All
Require all granted
</Directory>
</VirtualHost>
service apache2 restart
service apache2 reload
service apache2 status
apachectl configtest
visit: localhost and click some menus from joomla dashboard
@linuxkeepup
Copy link
Author

Screenshot from 2022-10-04 22-06-37

@linuxkeepup
Copy link
Author

Screenshot from 2022-10-03 17-31-39

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment