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.

18 lines
431 B

  1. map $http_host $directus {
  2. directus-mi.local.wpstudio.ru directus-mi;
  3. }
  4. server {
  5. listen 80;
  6. server_name
  7. directus-mi.local.wpstudio.ru
  8. ;
  9. location / {
  10. resolver 127.0.0.11;
  11. proxy_pass http://$directus:8055;
  12. proxy_set_header Upgrade $http_upgrade;
  13. proxy_set_header Connection 'upgrade';
  14. proxy_set_header Host $host;
  15. proxy_cache_bypass $http_upgrade;
  16. }
  17. }