さくらインターネットのVPS
では、phpPgAdminはyumでインストールできます。
このままではローカルホストからしか接続できないので、設定を変更します。
# vi /etc/httpd/conf.d/phpPgAdmin.conf
<Location /phpPgAdmin> # Order deny,allow # Deny from all # Allow from 127.0.0.1 # Allow from ::1 # # Allow from .example.com </Location>
Apacheを再起動して完了。
# /etc/rc.d/init.d/httpd restart