speedtest-web/nginx.conf/speedtest-web.conf

18 lines
617 B
Plaintext
Raw Normal View History

2021-12-17 15:05:15 +08:00
server {
2022-04-28 15:39:51 +08:00
listen 80 default_server;
listen [::]:80 default_server;
2021-12-17 15:05:15 +08:00
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;
}
}