You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
303 B
15 lines
303 B
# Install Debian Buster.
|
|
|
|
apt install adminer
|
|
|
|
echo "Alias /adminer /usr/share/adminer/adminer/" | sudo tee /etc/apache2/conf-available/adminer.conf
|
|
sudo a2enconf adminer.conf
|
|
sudo systemctl reload apache2
|
|
|
|
# On workstation:
|
|
ssh -N -C -L 54452:localhost:80 adminer
|
|
|
|
# In browser
|
|
http://127.0.0.1:54452
|
|
|