Skip to content

Instantly share code, notes, and snippets.

@vicentimartins
Created April 30, 2021 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vicentimartins/07a00b7d56308a5a5a11f4c1c8c85faf to your computer and use it in GitHub Desktop.
Save vicentimartins/07a00b7d56308a5a5a11f4c1c8c85faf to your computer and use it in GitHub Desktop.
Configuração nginx
server {
listen 80;
server_name localhost;
root /var/www/symfony/public;
location /api-docs/ {
}
location / {
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php/$1 last;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass app:9000;
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment