14 lines
385 B
Plaintext
14 lines
385 B
Plaintext
![]() |
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;
|
||
|
}
|
||
|
}
|