map $sent_http_content_type $expires { default off; text/html epoch; text/css max; application/javascript max; ~image/ max; } server { root /var/www/{{ vhost_name }}; index index.php index.html index.htm; server_name {{ domain }}; listen 80; expires $expires; client_max_body_size 50M; autoindex off; location / { try_files $uri $uri/ @handler; } location /admin { try_files $uri $uri/ /admin/index.php?$args; } location @handler { if (!-e $request_filename) { rewrite / /index.php last; } rewrite ^(.*.php)/ $1 last; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/run/php/php{{ php_version }}-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }