将反向代理设置从 Nginx 迁移到 Apache2

将反向代理设置从 Nginx 迁移到 Apache2

到目前为止,我一直在使用 Nginx,但由于某些原因,我不得不切换到 Apache2。我不是系统管理员,因此如果需要更多信息,请咨询

我无法将 1 个简单代理设置迁移到 Apache2:

location /auth {
  proxy_pass http://localhost;
  proxy_set_header Host $host;
  proxy_set_header X-Real-IP $remote_addr;
  proxy_set_header X-Forwarded-Proto https;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

特别是如何迁移标头X-Forwarded-For,因为我不知道 Apache2 中什么是等效的

相关内容