This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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; |