Skip to content

Instantly share code, notes, and snippets.

@habibun
Created September 12, 2019 11:24
Show Gist options
  • Save habibun/2402ca3a6584f7859a0bebe8594540e3 to your computer and use it in GitHub Desktop.
Save habibun/2402ca3a6584f7859a0bebe8594540e3 to your computer and use it in GitHub Desktop.
nginx symfony 4 virtual host
server {
server_name xxx.local www.xxx.local;
root /var/www/project/public;
location / {
# try to serve file directly, fallback to index.php
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.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;
internal;
}
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