Partage
  • Partager sur Facebook
  • Partager sur Twitter

configuration nginx Symfony

    30 octobre 2018 à 19:33:15

    Bonjour, 

    je tourne sous Debian 9 et j'essai de mettre en place un Symfony 4.2 avec nginx.

    J'ai créé mon projet Symfony via composer dans le dossier /var/www :

    composer create-project symfony/framework-standard-edition project

    ma librairie PHP est en 7.0.

    pour configurer mon site j'ai réalisé : 

    rm /etc/nginx/sites-enabled/default
    cd /etc/nginx/conf.d
    touch project.com.conf

    dans project.com.conf j'ai : 

    server {
        listen 80 default;
        server_name  project.com www.project.com;
        root /var/www/project/web;
    
        location / {
            # try to serve file directly, fallback to index.php
            try_files $uri @rewriteapp;
        }
    
        location @rewriteapp {
            rewrite ^(.*)$ /app.php/$1 last;
        }
    
    
        location ~ ^/(app|app_dev|config)\.php(/|$) {
            fastcgi_pass unix:/run/php/php7.0-fpm.sock;
            fastcgi_split_path_info ^(.+\.php)(/.*)$;
            include fastcgi_params;
    
            # optionally set the value of the environment variables used in the application
            # fastcgi_param APP_ENV prod;
            # fastcgi_param APP_SECRET <app-secret-id>;
            # fastcgi_param DATABASE_URL "mysql://db_user:db_pass@host:3306/db_name";
    
            # When you are using symlinks to link the document root to the
            # current version of your application, you should pass the real
            # application path instead of the path to the symlink to PHP
            # FPM.
            # Otherwise, PHP's OPcache may not properly detect changes to
            # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
            # for more information).
            fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
            fastcgi_param DOCUMENT_ROOT $realpath_root;
            # Prevents URIs that include the front controller. This will 404:
            # http://domain.tld/index.php/some-path
            # Remove the internal directive to allow URIs like this
            internal;
        }
    
        # return 404 for all other php files not matching the front controller
        # this prevents access to other php files you don't want to be accessible.
        location ~ \.php$ {
            return 404;
        }
    
    
        error_log /var/log/nginx/project.com_error.log;
        access_log /var/log/nginx/project.com_access.log;
    }



    Puis activé mon projet : 

    ln -s /etc/nginx/sites-available/www.project.com.conf /etc/nginx/sites-enabled/
    service nginx configtest
    service nginx reload
    


    Cependant malgré tout ça j'obtiens une 404 : 

    Pouvez-vous m'aider ? :)

    -
    Edité par KévinRacca 30 octobre 2018 à 19:38:56

    • Partager sur Facebook
    • Partager sur Twitter
      5 novembre 2018 à 15:47:14

      Salut,

      "ln -s /etc/nginx/sites-available/www.project.com.conf /etc/nginx/sites-enabled/"
      Pas besoin de faire ça si tu as mis ton site ton conf.d.
      Tu as quoi lorsque tu fais systemctl status nginx ?
      Sinon tu as bien lancé php-fpm ?
      • Partager sur Facebook
      • Partager sur Twitter

      configuration nginx Symfony

      × Après avoir cliqué sur "Répondre" vous serez invité à vous connecter pour que votre message soit publié.
      × Attention, ce sujet est très ancien. Le déterrer n'est pas forcément approprié. Nous te conseillons de créer un nouveau sujet pour poser ta question.
      • Editeur
      • Markdown