Skip to content

Instantly share code, notes, and snippets.

@habibun
Created September 12, 2019 11:18
Show Gist options
  • Save habibun/850e1e50ca1a5e7dea148df9c9b0168f to your computer and use it in GitHub Desktop.
Save habibun/850e1e50ca1a5e7dea148df9c9b0168f to your computer and use it in GitHub Desktop.
nginx symfony2 virtual host
server {
server_name xxx.local www.xxx.local;
root /home/xxx/xxx/domain/web;
location / {
# try to serve file directly, fallback to app.php
try_files $uri /app.php$is_args$args;
}
location ~ ^/(app_dev|config)\.php(/|$) {
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
}
location ~ \.php$ {
return 404;
}
error_log /var/log/nginx/xxx_error.log;
access_log /var/log/nginx/xxx_access.log;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment