Skip to content

Instantly share code, notes, and snippets.

@brpaz
Created September 7, 2014 09:49
Show Gist options
  • Save brpaz/aefec2f46736ba6aa9b5 to your computer and use it in GitHub Desktop.
Save brpaz/aefec2f46736ba6aa9b5 to your computer and use it in GitHub Desktop.
symfony2 virtualhost nginx configuration
server {
server_name domain.tld www.domain.tld;
root /var/www/project/web;
location / {
# try to serve file directly, fallback to app.php
try_files $uri /app.php$is_args$args;
}
location ~ ^/(app|app_dev|config)\.php(/|$) {
fastcgi_pass unix:/var/run/php5-fpm.sock;
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/project_error.log;
access_log /var/log/nginx/project_access.log;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment