blob: f7995f5d5ab822a9e7cbd49e0cbcd6733857e428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
server {
root /home/{user}/www/{vhost};
index index.php;
server_name {vhost};
error_log /var/log/nginx/{vhost}.error.log;
access_log /var/log/nginx/{vhost}.access.log;
location / {
try_files $uri $uri/ $uri/index.php;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:{pool_port};
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTPS off;
}
location ~ /\.ht {
deny all;
}
}
|