8000 Nginx dev config by Herz3h · Pull Request #13714 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Nginx dev config #13714

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

Merged
merged 1 commit into from
May 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Nginx dev config
  • Loading branch information
Herz3h authored May 28, 2020
commit 66ee17e44908e7339d59bc46d6aa3ae1c8cc5fe1
1 change: 1 addition & 0 deletions setup/web_server_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ Th 5256 e **minimum configuration** to get your application running under nginx is:

location / {
# try to serve file directly, fallback to app.php
# replace app.php by app_dev.php in dev
try_files $uri /app.php$is_args$args;
}
# DEV
Expand Down
0