Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Last active August 9, 2023 17:26
Show Gist options
  • Save LinauxTerminology/4d74cbbbe7e63c380ea05c954dced17d to your computer and use it in GitHub Desktop.
Save LinauxTerminology/4d74cbbbe7e63c380ea05c954dced17d to your computer and use it in GitHub Desktop.
I Will Do Setup Revive Adserver On Ubuntu 20.04
If you need Revive Adserver Setup contact with me:
Email: [email protected]
Skype: https://join.skype.com/
Telegram:https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
sudo -i
apt update && sudo apt-get upgrade --fix-missing
apt install build-essential checkinstall
apt install ubuntu-restricted-extras
apt update
sudo apt-get install apache2 mariadb-server-10.3 php7.4 php7.4-mysql unzip
sudo systemctl restart apache2
sudo service mariadb restart
mariadb -u root -p
sudo apt-get install php-xml
sudo service apache2 restart
php --version
msql --version
nano /etc/apache2/sites-enabled/000-default.conf
ServerName localhost
ctrl s+x and hit enter
nano/etc/apache2/sites-enabled/revive.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName localhost
<Directory /var/www/html/adserver>
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
sudo systemctl restart apache2
chmod -R a+w /var/www/html/adserver/var
chmod -R a+w /var/www/html/adserver/plugins
localhost/adserver
@sonnguyentb21
Copy link

Thank you for your tutorial. I made it!

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