server {
listen 80 ;
listen [::]:80 ;
listen 443 ssl ;
listen [::]:443 ssl ;
include snippets/snakeoil.conf;
server_name адрес_сайта.local;
root /var/www/путь_с_проекту/htdocs;
index index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location /company_data {
try_files $uri /img/textures/box2.png;
}
location ~ \.php$ {
fastcgi_read_timeout 600;
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}