# VB Forum server { server_name mydomain; listen 8070; root /var/www/mydomain/www; access_log /var/www/mydomain/logs/access.log combined; error_log /var/www/mydomain/logs/error.log warn; index index.html index.htm index.nginx-debian.html; # VB configuration rules # legacy css being handled separate for performance location = /css\.php { rewrite ^ /core/css.php break; } # make install available from presentation location ^~ /install { rewrite ^/install/ /core/install/ break; } # any request to not existing item gets redirected through routestring location / { if (!-f $request_filename) { rewrite ^/(.*)$ /index.php?routestring=$1 last; } } # make admincp available from presentation location ^~ /admincp { if (!-f $request_filename) { rewrite ^/admincp/(.*)$ /index.php?routestring=admincp/$1 last; } } # process any php scripts, not found gets redirected through routestring location ~ \.php$ { # handles legacy scripts if (!-f $request_filename) { rewrite ^/(.*)$ /index.php?routestring=$1 break; } fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_pass phpfastcgi; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_TYPE $content_type; fastcgi_param CONTENT_LENGTH $content_length; fastcgi_intercept_errors on; fastcgi_ignore_client_abort off; fastcgi_connect_timeout 60; fastcgi_send_timeout 180; fastcgi_read_timeout 180; fastcgi_buffers 256 16k; fastcgi_buffer_size 32k; fastcgi_temp_file_write_size 256k; } } upstream phpfastcgi { # address to accept FastCGI requests. Make sure you set the right value under your fast cgi conf. server unix:/var/run/php/php7.0-fpm.sock; }