When adding any content to security_website.yaml that isn't a comment, Symfony will return the following error:
Configuration path "<RULE NAME>" cannot be overwritten. You have to define all options for this path, and any of its sub-paths in one configuration section.
Right I figured it out. This is an error in the documentation on the installation page .
All firewall rules and configs MUST be in security.yaml, not in two different files.
Actual Behavior
When adding any content to security_website.yaml that isn't a comment, Symfony will return the following error:
Configuration path "<RULE NAME>" cannot be overwritten. You have to define all options for this path, and any of its sub-paths in one configuration section.
The """solution""" I found was to merge every security config file into one, which could be causing another Issue I've logged here: https://stackoverflow.com/questions/31464972/configuration-path-security-access-control-cannot-be-overwritten
Expected Behavior
Both configuration files get applied to their respective parts of the webpage (Admin / Webspace)
Steps to Reproduce