Note that there are some explanatory texts on larger screens.

plurals
  1. POphp-fpm is parsing .phps instead of showing code (hilighted)
    primarykey
    data
    text
    <p>At the moment we're running nginx + php-fpm but we have an issue showing .phps files.</p> <p>If I add .phps to the location rule, then it will start downloading the source.</p> <p>In apache your normally would do AddType application/x-httpd-php-source .phps</p> <p>How can I fix this in php-fpm?</p> <p>This is what the config's contains:</p> <pre><code>location ~ \.(txt|php|html)$ { include server_fpm; } </code></pre> <p>server_fpm cotains</p> <pre><code>include fastcgi_params; fastcgi_pass backend; </code></pre> <p>fastcgi_params contains</p> <pre><code>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 REQUEST_URI $request_uri; fastcgi_param DOCUMENT_URI $document_uri; fastcgi_param DOCUMENT_ROOT $document_root; fastcgi_param SERVER_PROTOCOL $server_protocol; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param GATEWAY_INTERFACE CGI/1.1; fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; fastcgi_param REMOTE_ADDR $remote_addr; fastcgi_param REMOTE_PORT $remote_port; fastcgi_param SERVER_ADDR $server_addr; fastcgi_param SERVER_PORT $server_port; fastcgi_param SERVER_NAME $server_name; #Custom parameters #Legacy apache forward FCGI params fastcgi_param HTTP_X_REAL_IP $remote_addr; fastcgi_param HTTP_X_NGINX_VERSION $nginx_version; # PHP only, required if PHP was built with --enable-force-cgi-redirect fastcgi_param REDIRECT_STATUS 200; fastcgi_connect_timeout 60; fastcgi_send_timeout 180; fastcgi_read_timeout 180; fastcgi_buffer_size 128k; fastcgi_buffers 4 256k; fastcgi_busy_buffers_size 256k; fastcgi_temp_file_write_size 256k; fastcgi_intercept_errors on; fastcgi_ignore_client_abort off; fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_index index.php; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload