Skip to content

symfony.conf file does not reflect the latest symfony 4 directory structure #82

Open
@mohib0306

Description

@mohib0306

Current symfony.conf file:
`server {
server_name symfony.dev;
root /var/www/symfony/web;

location / {
    try_files $uri @rewriteapp;
}

location @rewriteapp {
    rewrite ^(.*)$ /app.php/$1 last;
}

location ~ ^/(app|app_dev|config)\.php(/|$) {
    fastcgi_pass php-upstream;
    fastcgi_split_path_info ^(.+\.php)(/.*)$;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param HTTPS off;
}

error_log /var/log/nginx/symfony_error.log;
access_log /var/log/nginx/symfony_access.log;

} `

since /var/www/symfony/web is not the root in symfony 4, but rather /var/www/symfony/public is the root directory. When the /var/www/symfony/web is used as the root directory, navigating to the symfony.dev return "File Not Found" error page. The same thing goes for changing app.php to index.php

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions