diff --git a/templates/nginx-phabricator.conf b/templates/nginx-phabricator.conf index 0765a22..8bb7b94 100644 --- a/templates/nginx-phabricator.conf +++ b/templates/nginx-phabricator.conf @@ -1,47 +1,48 @@ server { server_name {{ domain }}; listen 80 proxy_protocol; set_real_ip_from 10.0.0.0/16; real_ip_header proxy_protocol; root {{ phabricator_path}}webroot; try_files $uri $uri/ /index.php; + client_max_body_size 2048M; location / { index index.php; if ( !-f $request_filename ) { rewrite ^/(.*)$ /index.php?__path__=/$1 last; break; } } location /index.php { fastcgi_pass localhost:9000; fastcgi_index index.php; #required if PHP was built with --enable-force-cgi-redirect fastcgi_param REDIRECT_STATUS 200; #variables to make the $_SERVER populate in PHP fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 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_param SCRIPT_NAME $fastcgi_script_name; fastcgi_param GATEWAY_INTERFACE CGI/1.1; fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; fastcgi_param REMOTE_ADDR $remote_addr; proxy_set_header Host $host; proxy_set_header X-Real-IP $proxy_protocol_addr; proxy_set_header X-Forwarded-For $proxy_protocol_addr; } }