Skip to content

Instantly share code, notes, and snippets.

@iggyster
Created December 16, 2019 17:15
Show Gist options
  • Save iggyster/9891ddc1881a95059ff750d504fa52c7 to your computer and use it in GitHub Desktop.
Save iggyster/9891ddc1881a95059ff750d504fa52c7 to your computer and use it in GitHub Desktop.
Nginx conf example for Symfony app
server {
listen 80;
server_name symfony-playground.lm *.symfony-playground.lm;
root /var/www/playground/public;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass php:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
internal;
}
location ~ \.php$ {
return 404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment