Skip to content

Instantly share code, notes, and snippets.

@krabello
Created August 18, 2016 15:01
Show Gist options
  • Save krabello/47bd608180bbbe8ee83ca926c0d4b634 to your computer and use it in GitHub Desktop.
Save krabello/47bd608180bbbe8ee83ca926c0d4b634 to your computer and use it in GitHub Desktop.
Symfony2 nginx virtual host
server {
listen 80;
# Server name being used (exact name, wildcards or regular expression)
server_name DOMAIN_NAME;
client_max_body_size 20M;
# Document root, make sure this points to your Symfony2 /web directory
root /var/www/html/DIRECTORY;
# Logging
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
location / {
# try to serve file directly, fallback to rewrite
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /app.php/$1 last;
}
# Pass the PHP scripts to FastCGI server
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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment