Symfony2 nginx自动注销

时间:2016-06-18 18:32:51

标签: php symfony nginx

我在Symfony 2(nginx,MySQL)中有一个项目。

我查看了nginx access.log文件,发现了一些非常有趣的内容。

似乎我从我的应用程序中获得了自动路由调用。

这是我的access.log:

10.15.4.104 - - [18 / Jun / 2016:09:32:52 +0200]" GET / logout HTTP / 1.1" 302

10.15.4.104 - - [18 / Jun / 2016:09:32:52 +0200]" GET / login HTTP / 1.1" 200

似乎在同一秒内,两个路由被调用(注销然后在同一秒/登录中)。

我正在使用FOSUserBundle。

这是我的config.yml

的一部分
translator:      { fallbacks: ["%locale%"] }
secret:          "%secret%"
router:
    resource: "%kernel.root_dir%/config/routing.yml"
    strict_requirements: ~
form:            ~
csrf_protection: ~
validation:      { enable_annotations: true }
#serializer:      { enable_annotations: true }
templating:
    engines: ['twig']
    #assets_version: SomeVersionScheme
default_locale:  "%locale%"
trusted_hosts:   ~
trusted_proxies: ~
session:
    # handler_id set to null will use default session handler from php.ini
    handler_id:  ~
    gc_probability: 0
fragments:       ~
http_method_override: true

0 个答案:

没有答案