Created
September 12, 2019 11:18
-
-
Save habibun/850e1e50ca1a5e7dea148df9c9b0168f to your computer and use it in GitHub Desktop.
nginx symfony2 virtual host
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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