c1
This commit is contained in:
21
hosts/two.conf_
Normal file
21
hosts/two.conf_
Normal file
@@ -0,0 +1,21 @@
|
||||
server {
|
||||
listen 80;
|
||||
index index.php;
|
||||
server_name two.loc;
|
||||
error_log /var/log/nginx/two_error.log;
|
||||
root /var/www/two.loc;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.php?$args;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
fastcgi_pass php71-two:9000;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_read_timeout 1000;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user