25 lines
579 B
Plaintext
25 lines
579 B
Plaintext
server {
|
|
listen 192.168.1.2:80;
|
|
server_name trace.898.ro;
|
|
charset utf-8;
|
|
|
|
root /var/www/html/vhosts/club3d.ro/mtr;
|
|
index index.php index.html;
|
|
|
|
access_log /var/log/nginx/trace.898.ro.access.log;
|
|
error_log /var/log/nginx/trace.898.ro.error.log;
|
|
|
|
location ~* \.php$ {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
include fastcgi_params;
|
|
fastcgi_pass unix:/var/run/php-fpm.sock;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_max_temp_file_size 0;
|
|
fastcgi_buffer_size 4K;
|
|
fastcgi_buffers 64 4k;
|
|
}
|
|
|
|
}
|
|
|