server { listen {projectIp}:80; server_name {projectName}; charset utf-8; index index.php index.html; root "{projectPath}"; include nginx/common/default; include nginx/common/bitrix; include nginx/common/handler.404; # DAV #dav_methods PUT DELETE MKCOL COPY MOVE; location ~ \.php$ { # Timeout fastcgi_read_timeout 180; fastcgi_ignore_client_abort on; # Common include nginx.fastcgi.conf; include nginx.redis.conf; fastcgi_pass php_farm; } }