first commit
This commit is contained in:
parent
3750a23741
commit
cd1214eb62
16
nginx.conf/speedtest-web.conf
Normal file
16
nginx.conf/speedtest-web.conf
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user