RESTler とエクスプローラーは Apache で動作していますが、Nginx では動作しません。
API は正常に動作します (server.com/api/class は正常に動作します) が、http: //server.com/api/explorer/index.html では Nginx 404 が返されます。
RESTler + nginx + Explorer が動作していて、nginx の構成を共有したい人はいますか?
私はnginx、私の設定で動作するエクスプローラーを持っています:
root /var/www/test/;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
fastcgi_pass unix:/var/run/php5-fpm/socket.socket;
fastcgi_index index.php;
include fastcgi_params;
}
location /api {
if (!-f $request_filename) {
rewrite ^(.*)$ /api/index.php last;
}
if (!-d $request_filename) {
rewrite ^(.*)$ /api/index.php last;
}
}
fastcgi_param
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_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
...