modx friendly urls nginx FPM php5.3 - friendly url's not working

Posted by okdan on Stack Overflow See other posts from Stack Overflow or by okdan
Published on 2010-12-24T12:52:39Z Indexed on 2010/12/28 8:54 UTC
Read the original article Hit count: 303

Filed under:
|
|
|

Hi,

Im using php5.3 on nginx 0.8.53 with FPM on Modx revolution.

Im trying to get "friendly url's" to work, but all I get is 404's. In modx config, friendly url's is set to yes, friendly aliases is set to no (so it drops the suffix)

My config file:

server {
    listen 80;
    server_name .mydomain.net;

    # index index.php;
    root   /home/mylogin/htdocs;

    location /  {
             index  index.php index.html;
             if (!-e $request_filename)
             {
               rewrite ^/(.*)$ /index.php?q=$1 last;
             }
    }
    # serve static files directly
    location ~* ^.+\.(jpg|jpeg|gif|css|png|js|ico)$ {
        root /home/mylogin/htdocs;
        access_log        off;
        expires           30d;
        break;
    }
}

Fast CGI modx file:

fastcgi_connect_timeout 60;

fastcgi_send_timeout 300; fastcgi_buffers 4 32k; fastcgi_busy_buffers_size 32k; fastcgi_temp_file_write_size 32k; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_ignore_client_abort on; fastcgi_intercept_errors on; fastcgi_read_timeout 300; 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 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; fastcgi_param REDIRECT_STATUS 200;

© Stack Overflow or respective owner

Related posts about url

Related posts about nginx