Skip to content

Instantly share code, notes, and snippets.

View PrakashLakhara's full-sized avatar

PrakashLakhara

View GitHub Profile
## phpMyAdmin configuration
location ~ ^/PHPMYADMIN_PLACEHOLDER/(.*)$ {
alias /usr/share/phpMyAdmin/$1;
location ~ ^/PHPMYADMIN_PLACEHOLDER/(.+\.php)$ {
alias /usr/share/phpMyAdmin/$1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
@vtno
vtno / JUST_INSTALL_GPG.sh
Last active February 25, 2022 09:56
Install GnuPG 2.3.3 in one go. Check for compatible lib version on the official download page: https://gnupg.org/download/index.html
#!/usr/bin/env bash
set -e -x
sudo apt-get update
sudo apt-get -y install libgnutls28-dev bzip2 make gettext texinfo gnutls-bin build-essential g++
mkdir -p gnupg23
pushd gnupg23