* close pma & inblucket ports
+ auth and example nginx config for local phpmyadmin service
This commit is contained in:
14
config/nginx/conf.d/z-pma.conf.example
Normal file
14
config/nginx/conf.d/z-pma.conf.example
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user