소스 검색

Suppression d'anciens fichiers de conf

François 5 년 전
부모
커밋
ff8480c6d4
3개의 변경된 파일0개의 추가작업 그리고 121개의 파일을 삭제
  1. 0 24
      config/packages/security.yaml.save
  2. 0 53
      config/packages/security.yaml.test
  3. 0 44
      config/packages/security.yml.saveFilm

+ 0 - 24
config/packages/security.yaml.save

@@ -1,24 +0,0 @@
-security:
-    # https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
-    providers:
-        in_memory: { memory: ~ }
-    firewalls:
-        dev:
-            pattern: ^/(_(profiler|wdt)|css|images|js)/
-            security: false
-        main:
-            anonymous: true
-
-            # activate different ways to authenticate
-
-            # http_basic: true
-            # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
-
-            # form_login: true
-            # https://symfony.com/doc/current/security/form_login_setup.html
-
-    # Easy way to control access for large sections of your site
-    # Note: Only the *first* access control that matches will be used
-    access_control:
-        # - { path: ^/admin, roles: ROLE_ADMIN }
-        # - { path: ^/profile, roles: ROLE_USER }

+ 0 - 53
config/packages/security.yaml.test

@@ -1,53 +0,0 @@
-# To get started with security, check out the documentation:
-# https://symfony.com/doc/current/security.html
-security:
-    encoders:
-        AppBundle\Entity\User: sha512
-
-    role_hierarchy:
-        ROLE_ADMIN: [ROLE_USER, ROLE_MODERATEUR]
-        ROLE_SUPER_ADMIN: [ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
-    # https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
-    providers:
-        main:
-            entity:
-                class: AppBundle\Entity\User
-                property: username
-
-    firewalls:
-        # disables authentication for assets and the profiler, adapt it according to your needs
-        dev:
-            pattern: ^/(_(profiler|wdt)|css|images|js)/
-            security: false
-
-        main_login:
-            pattern: ^/(login$|register$|motdepasseoublie$|resetpassword/token=|activate/token=)
-            anonymous: true
-            logout_on_user_change: true
-
-        main:
-            anonymous: false
-            pattern: ^/
-            logout_on_user_change: true
-            provider: main
-            form_login:
-                login_path: login
-                check_path: login_check
-                csrf_token_generator: security.csrf.token_manager
-            logout:
-                path: logout
-                target: login
-            remember_me:
-                secret: "%secret%"
-            switch_user: true
-            # activate different ways to authenticate
-
-            # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
-            #http_basic: ~
-
-            # https://symfony.com/doc/current/security/form_login_setup.html
-            #form_login: ~
-
-    access_control:
-        - { path: ^/admin, roles: ROLE_ADMIN }
-        - { path: ^/genre, roles: ROLE_MODERATEUR }

+ 0 - 44
config/packages/security.yml.saveFilm

@@ -1,44 +0,0 @@
-# To get started with security, check out the documentation:
-# https://symfony.com/doc/current/security.html
-security:
-    encoders:
-        App\Entity\User: sha512
-
-    role_hierarchy:
-        ROLE_ADMIN: [ROLE_USER, ROLE_MODERATEUR]
-        ROLE_SUPER_ADMIN: [ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
-    # https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
-    providers:
-        main:
-            entity:
-                class: App\Entity\User
-                property: username
-
-    firewalls:
-        # disables authentication for assets and the profiler, adapt it according to your needs
-        dev:
-            pattern: ^/(_(profiler|wdt)|css|images|js)/
-            security: false
-
-        main:
-            anonymous: false
-            pattern: ^/
-            provider: main
-            guard:
-                authenticators:
-                    - App\Security\LoginFormAuthenticator
-            remember_me:
-                secret: '%env(APP_SECRET)%'
-            switch_user: true
-            # activate different ways to authenticate
-
-            # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
-            #http_basic: ~
-
-            # https://symfony.com/doc/current/security/form_login_setup.html
-            #form_login: ~
-
-    access_control:
-        - { path: ^/(login$|register$|motdepasseoublie$|resetpassword/token=|activate/token=) , roles: IS_AUTHENTICATED_ANONYMOUSLY }
-        - { path: ^/admin, roles: ROLE_ADMIN }
-        - { path: ^/genre, roles: ROLE_MODERATEUR }