vercel.json 538 B

123456789101112131415161718192021222324
  1. {
  2. "github": {
  3. "silent": true
  4. },
  5. "headers": [
  6. {
  7. "source": "/(.*)",
  8. "headers": [
  9. {
  10. "key": "X-Real-IP",
  11. "value": "$remote_addr"
  12. },
  13. {
  14. "key": "X-Forwarded-For",
  15. "value": "$proxy_add_x_forwarded_for"
  16. },
  17. {
  18. "key": "Host",
  19. "value": "$http_host"
  20. }
  21. ]
  22. }
  23. ]
  24. }