Playbooks to a new Lilik
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.

11 lines
472 B

  1. location / {
  2. client_max_body_size {{ max_body_size }}M;
  3. proxy_set_header Upgrade $http_upgrade;
  4. proxy_set_header Connection "upgrade";
  5. proxy_set_header Host $http_host;
  6. proxy_set_header X-Real-IP $remote_addr;
  7. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  8. proxy_set_header X-Forwarded-Proto $scheme;
  9. proxy_set_header X-Frame-Options SAMEORIGIN;
  10. proxy_pass {{ remote_host }};
  11. }