* close pma & inblucket ports

+ auth and example nginx config for local phpmyadmin service
This commit is contained in:
WP Studio
2024-08-06 19:40:40 +03:00
parent 35baceb62a
commit dc3b0a76a7
4 changed files with 21 additions and 10 deletions

View File

@ -0,0 +1,14 @@
server {
server_name pma.e2e.10ballov.ru;
listen 80;
include includes.d/auth.conf;
client_max_body_size 300M;
location / {
#resolver 127.0.0.11;
proxy_pass http://pma;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}