Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/291.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
kerberos apache php部分工作_Php_Apache_Kerberos - Fatal编程技术网

kerberos apache php部分工作

kerberos apache php部分工作,php,apache,kerberos,Php,Apache,Kerberos,apache php上的kerberos身份验证存在问题 设置=RHEL 7 来自rhscl的apache 2.4 使用php fpm配置的rhscl的php7 Kerberos在上运行得非常好 但不是在 访问.php文件时,所有子目录都会出现相同的问题 在vhost设置中,php被重写为fcgi index.php=>$\u服务器['REMOTE\u USER'] vhost设置 <VirtualHost *:443 > ## Vhost docroot DocumentR

apache php上的kerberos身份验证存在问题 设置=RHEL 7 来自rhscl的apache 2.4 使用php fpm配置的rhscl的php7

Kerberos在上运行得非常好 但不是在

访问.php文件时,所有子目录都会出现相同的问题

在vhost设置中,php被重写为fcgi

index.php=>$\u服务器['REMOTE\u USER']

vhost设置

<VirtualHost *:443 > 
  ## Vhost docroot
 DocumentRoot /opt/code70

 <Directory /opt/code70>
    Options Indexes MultiViews
    Options FollowSymLinks
    IndexOptions FancyIndexing HTMLTable VersionSort IgnoreCase
    IndexOrderDefault Descending Date
    IndexIgnore *.php

    AuthType Kerberos
AuthName "Kerberos"
KrbMethodNegotiate On
KrbMethodK5Passwd On
KrbAuthRealms ....
....    
KrbVerifyKDC Off
KrbSaveCredentials Off
KrbLocalUserMapping On
KrbAuthoritative On
    Order allow,deny
    Allow from all
    Require valid-user
</Directory>

## SSL directives
SSLEngine on
SSLCertificateFile      ......
SSLProtocol             -ALL +TLSv1
SSLCipherSuite           ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
SSLHonorCipherOrder     On
ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://localhost:9000/opt/code70/$1   
</VirtualHost>

##Vhost docroot
DocumentRoot/opt/code70
选项索引多视图
选项如下符号链接
索引选项FancyIndexing HTMLTable VersionSort IgnoreCase
INDEXORDEFAULT递减日期
IndexIgnore*.php
身份验证类型Kerberos
AuthName“Kerberos”
KrbMethodNegotiate On
KrbMethodK5Passwd打开
克尔鲍思王国。。。。
....    
KrbVerifyKDC关闭
KrbSaveCredentials关闭
上的KrbLocalUserMapping
Krbautoritative On
命令允许,拒绝
通融
需要有效用户
##SSL指令
斯伦金安
SSL证书文件。。。。。。
SSLProtocol-全部+TLSv1
SSLCipherSuite全部:!阿努尔:!ADH:!埃努尔:!低:!经验:RC4+RSA:+高:+中
SSLHonorCipherOrder开启
ProxyPassMatch^/(.\.php(/.*)$fcgi://localhost:9000/opt/code70/$1   

共享您的
代码
服务器
配置,
.htaccess
等。您能否澄清您看到的错误消息?我在您发布的httpd配置文件中看到了一个问题,但我们需要了解更多。