“require_channel:https”导致错误310,重定向太多

时间:2013-06-22 11:52:11

标签: symfony

如果我尝试强制使用https我的网站的某些区域

Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.

如果我只是使用https://我自己的页面呈现正常,那只有当我强迫它使用https时才会这样。

这是我的security.yml,但如果我也使用注释,我会得到同样的错误。

security:
    encoders:
        FOS\UserBundle\Model\UserInterface: sha512

    role_hierarchy:
        ROLE_ADMIN:       ROLE_USER
        ROLE_MERCHANT:    ROLE_USER
        ROLE_SUPER_ADMIN: [ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH, ROLE_MERCHANT]

    providers:
        fos_userbundle:
            id: fos_user.user_provider.username_email

    firewalls:
        dev:
            pattern:  ^/(_(profiler|wdt)|css|images|js)/
            security: false
        main:
            pattern: ^/
            form_login:
                provider: fos_userbundle
                csrf_provider: form.csrf_provider
                default_target_path: /dashboard
            logout:       true
            anonymous:    true

    access_control:
        - { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY}
        - { path: ^/login_check$, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/admin/, role: ROLE_ADMIN, requires_channel: https }
        - { path: ^/dashboard, role: ROLE_USER, requires_channel: https}
        - { path: ^/invoice/new, role: ROLE_MERCHANT, requires_channel: https}
        - { path: ^/invoice, role: ROLE_USER, requires_channel: https}

我也在使用nginx而不是Apache。

1 个答案:

答案 0 :(得分:2)

尝试添加

fastcgi_param HTTPS on;

对于你的nginx vhost,这将帮助Symfony识别出请求是SSL请求,symfony正在检查HTTPS全局变量以检查请求是否为SSL并且相应地重定向,如果该变量未在SSL请求上的Web服务器symfony将尝试重定向导致循环:)

此处有更多信息.. http://blog.servergrove.com/2011/04/04/symfony2-quick-tip-generateurl-with-https-on-nginx/