17 lines
561 B
Plaintext
17 lines
561 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /app/www/speedtest-web;
|
|
index index.html index.htm;
|
|
|
|
location ~ ^/.+\.php {
|
|
fastcgi_index index.php;
|
|
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
|
|
include fastcgi_params;
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
}
|
|
}
|