You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
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;
|
|
}
|
|
}
|