Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nginx try_files try to serve root directory #411

Open
sh3bang opened this issue Sep 13, 2024 · 0 comments
Open

Nginx try_files try to serve root directory #411

sh3bang opened this issue Sep 13, 2024 · 0 comments

Comments

@sh3bang
Copy link

sh3bang commented Sep 13, 2024

Nginx Sample Config seems to be wrong. Requesting root directory and try serving $uri/ will resulting in 403

location / {
    try_files $uri $uri/ /index.php$is_args$args;
}

should be

location / {
    try_files $uri /index.php$is_args$args;
}

https://docs.typo3.org/m/typo3/tutorial-getting-started/main/en-us/SystemRequirements/Index.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant