vhost-stack/etc/apache2/conf-available/phpMyAdmin.conf

20 lines
553 B
Plaintext
Raw Normal View History

2021-04-04 13:28:22 -07:00
Alias /phpMyAdmin /srv/www/html/phpMyAdmin
AddExternalAuth pwauth /usr/sbin/pwauth
SetExternalAuthMethod pwauth pipe
<Location /phpMyAdmin>
AuthType Basic
AuthName "phpMyAdmin"
AuthBasicProvider external
AuthExternal pwauth
Require valid-user
</Location>
2022-07-18 19:05:51 -07:00
# this is to force the default fpm, so we don't end up trying to use a virtualhosts jailed fpm which won't work
<Directory "/srv/www/html/phpMyAdmin">
<FilesMatch ".+\.ph(ar|p|tml)$">
2022-08-29 15:32:56 -07:00
SetHandler "proxy:unix:/run/php/php8.1-fpm.sock|fcgi://localhost"
2022-07-18 19:05:51 -07:00
</FilesMatch>
</Directory>