From b008f468f7e327fc6907688791d2e1c10211f3e1 Mon Sep 17 00:00:00 2001 From: db123-test Date: Mon, 4 May 2026 11:46:44 +0330 Subject: [PATCH] fix(deploy): add auth proxy configuration for phpMyAdmin Include auth_request and upstream_status directives in nginx location block to enable authentication proxy for phpMyAdmin access. --- docs/deploy.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/deploy.md b/docs/deploy.md index ec121c5..e59c7e0 100644 --- a/docs/deploy.md +++ b/docs/deploy.md @@ -61,6 +61,9 @@ server { include /etc/nginx/snippets/auth-proxy.conf; location / { + auth_request /_auth_proxy; + auth_request_set $auth_status $upstream_status; + proxy_pass http://phpmyadmin:80/; # ... other proxy settings ... }