将.htaccess http授权转换为nginx

将.htaccess http授权转换为nginx

我需要将以下 .htaccess 字符串转换为 nginx 配置:

RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]

谁能帮我?

我正在运行 nginx + php_fpm 配置。

答案1

添加到您的 PHPlocation块或全局变量fastcgi_paramsinclude

fastcgi_param REMOTE_USER $remote_user;

相关内容