first commit

This commit is contained in:
bughz 2021-12-17 15:05:15 +08:00
parent 3750a23741
commit cd1214eb62
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
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;
}
}