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.

13 lines
385 B

  1. server {
  2. server_name pma.e2e.10ballov.ru;
  3. listen 80;
  4. include includes.d/auth.conf;
  5. client_max_body_size 300M;
  6. location / {
  7. #resolver 127.0.0.11;
  8. proxy_pass http://pma;
  9. proxy_set_header Upgrade $http_upgrade;
  10. proxy_set_header Connection 'upgrade';
  11. proxy_set_header Host $host;
  12. proxy_cache_bypass $http_upgrade;
  13. }
  14. }